Exponential Backoff - CI/CD Glossary Definition
Exponential backoff is a retry strategy that doubles the wait between attempts (1s, 2s, 4s, ...), usually with random jitter, to avoid hammering a struggling service.
In CI
Retrying a flaky network call with exponential backoff and a cap is the standard fix for transient 429 and 5xx responses, and it prevents many synchronized clients from forming a retry storm.
Related guides
HTTP Status Code - CI/CD Glossary DefinitionHTTP Status Code: An HTTP status code is a three-digit number a server returns to summarize the result: 2xx s…
Rate Limit Header - CI/CD Glossary DefinitionRate Limit Header: A rate limit header is an HTTP response header that reports your quota usage, commonly `X-…
Dead Letter Queue - CI/CD Glossary DefinitionDead Letter Queue: A dead letter queue (DLQ) is a holding queue for messages that could not be processed afte…