HTTP Status Code - CI/CD用語集の定義
HTTPステータスコード は、サーバーが結果を要約して返す3桁の数字です。2xxは成功、3xxはリダイレクト、4xxはクライアントエラー(404 not found、429 too many requests)、5xxはサーバーエラー(500、503)です。
CIにおいて
不安定な統合テストは、多くの場合、依存先からの一時的な502や503に帰着します。5xxと429をretry可能として扱い、4xx(429を除く)は本物のバグとして扱うことが、健全なretryポリシーの基礎です。
関連ガイド
Idempotent Method - CI/CD Glossary DefinitionIdempotent Method: An idempotent method is an HTTP method that produces the same result whether called once o…
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-…
Exponential Backoff - CI/CD Glossary DefinitionExponential Backoff: Exponential backoff is a retry strategy that doubles the wait between attempts (1s, 2s,…