Exponential Backoff - CI/CD用語集の定義
exponential backoff は、試行間の待機時間を倍にしていく(1s、2s、4s、...)retry戦略で、通常はランダムなjitterを加えて、苦しんでいるサービスを叩き続けるのを避けます。
CIにおいて
不安定なネットワーク呼び出しをexponential backoffと上限付きでretryするのは、一時的な429と5xxレスポンスに対する標準的な対処であり、多くの同期したクライアントがretryの嵐を形成するのを防ぎます。
関連ガイド
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…