Retry Budget - CI/CD Glossary Definition
A retry budget caps how many retries a system will attempt within a window, expressed as a fraction of total requests (for example, retries may add at most 10 percent extra load). It prevents retries from amplifying an outage.
Why it matters
Unbounded retries against a struggling dependency create a retry storm that makes the outage worse. A budget lets you recover from transient blips, which is the basis of safe self-healing CI, without overwhelming the thing you depend on.
Related guides
Idempotency - CI/CD Glossary DefinitionIdempotency: Idempotency is the property that running an operation multiple times has the same effect as runn…
Flaky Test Quarantine - CI/CD Glossary DefinitionFlaky Test Quarantine: Flaky test quarantine is the practice of isolating a known-flaky test so its nondeterm…
Mean Time to Recovery (MTTR) - CI/CD Glossary DefinitionMean Time to Recovery (MTTR): Mean time to recovery (MTTR) is the average time it takes to restore service af…