← Graph

Don't kill dependencies — use backoff

takeaway 2 connections

Every retry reserves CPU and memory on the receiver. If the receiver is already close to out-of-memory, aggressive constant retries can finish it off. Use a backoff strategy (exponential backoff is the common default) so retries back off when problems persist.

type
warning
takeaway Don't kill dependencies — use backoff
about
Endorses exponential backoff as the mechanism.
takeaway Don't kill dependencies — use backoff
from_talk
Advice given in the retry section.

Provenance

Read by
5 extractions