Retry - CI/CD用語集の定義
retryは、失敗した操作を再試行して一時的なエラー(ネットワーク、throttling)を吸収します。backoffやidempotencyキーと組み合わせることで安全に保てます。
関連ガイド
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…