When a cache expires or server restarts, all waiting requests hit the backend simultaneously. This overloads the backend, causing more failures.
Solutions: cache stampede protection (only one request refreshes, others wait), jittered expiration (spread expirations randomly), warm-up periods (gradually increase traffic to new instances). Common in cache and deployment scenarios.