A cache stampede (or dogpile) happens when a hot cached key expires and many concurrent requests miss it at once, all falling through to the origin to recompute the same value simultaneously. The origin (DB or service) gets hammered by a burst it can't handle, sometimes taking the system down.
The cause
t=0 hot key expires
t=0+ 1000 requests arrive → all miss → all query the DB for the SAME value
→ DB overwhelmed; latency spikes; failures cascade
