← Graph

Exponential Backoff

concept 2 connections

Popular backoff strategy for retries. Instead of dense constant retries (which risk killing an already-overloaded receiver, since every message reserves CPU/memory), a small number of quick initial retries handle transient issues (DNS, connection blips), then each subsequent retry waits progressively longer. The talk recommends exponential backoff as the default when any retry scheme is needed.

category
pattern
Recommended default backoff strategy for retries.
about
Exponential Backoff concept
Endorses exponential backoff as the mechanism.

Provenance

Read by
2 extractions