Retry - Definição do Glossário de CI/CD
Um retry tenta novamente uma operação que falhou para absorver erros transitórios (rede, throttling); combiná-lo com backoff e chaves de idempotência o mantém seguro.
Guias relacionados
Exponential Backoff - CI/CD Glossary DefinitionExponential backoff waits progressively longer between retries (1s, 2s, 4s...), often with jitter, so a strug…
Idempotency - CI/CD Glossary DefinitionIdempotency means an operation can run repeatedly with the same effect as running it once. It is what makes r…
Self-Healing CI - CI/CD Glossary DefinitionSelf-Healing CI: **Self-healing CI** automatically detects, fixes, and retries transient or mechanical failur…