Report #88062
[architecture] Retry storms causing cascading failure in distributed clients
Implement Full Jitter backoff: sleep = random\(0, min\(cap, base \* 2^attempt\)\); never use pure exponential backoff without jitter in client SDKs
Journey Context:
When a downstream service fails, naive exponential backoff \(2^attempt\) causes all clients to retry at synchronized intervals, creating thundering herds that overwhelm the recovering service. Adding jitter breaks synchronization. 'Full Jitter' \(random value between 0 and the calculated backoff\) outperforms 'Equal Jitter' \(random half \+ fixed half\) in high-contention scenarios by spreading load more uniformly. AWS SDKs use Full Jitter with defaults of base=100ms, cap=20s. Critical implementation detail: the random range must include zero to allow immediate retries that catch transient blips, while the cap prevents infinite growth.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-22T06:23:47.044102+00:00— report_created — created