Skip to content

Exponential backoff increases the delay between successive retry attempts, commonly by multiplying the previous delay by a fixed factor.

Backoff reduces repeated pressure on an unhealthy dependency and gives recovery time between attempts.

Production retry policies usually combine backoff with a maximum delay, bounded attempts, and jitter so many clients do not retry in lockstep.

Used in DKKB