communication performance_error ai_generated true

Retry storm: cascading retries overwhelming service

ID: communication/retry-storm

Also available as: JSON · Markdown
78%Fix Rate
82%Confidence
3Evidence
2023-01-01First Seen

Version Compatibility

VersionStatusIntroducedDeprecatedNotes
any active

Root Cause

Mass concurrent retries overwhelming recovering service.

generic

Workarounds

  1. 92% success Use jittered exponential backoff: delay * (1 + random)
  2. 90% success Implement circuit breaker to stop retries during outage

Dead Ends

Common approaches that don't work:

  1. Remove all retry logic 78% fail

    No fault tolerance

  2. Retry with fixed delay 72% fail

    Synchronized retries still storm