Connection Pool - CI/CD用語集の定義
connection pool は、開いた再利用可能な接続(データベースやHTTPサービスへの)のcacheで、呼び出し元がリクエストごとにセットアップコストを払う代わりに、接続を借りて返せるようにします。
CIにおいて
テストごとに接続を開くテストスイートは、poolを枯渇させ "too many connections" で失敗することがあります。poolのサイズを調整し、teardownで接続を閉じることで、統合テストを安定させられます。
関連ガイド
Load Balancer Health Check - CI/CD Glossary DefinitionLoad Balancer Health Check: A load balancer health check is a periodic probe (often an HTTP GET to `/health`)…
Message Queue - CI/CD Glossary DefinitionMessage Queue: A message queue is a buffer that holds messages between a producer and one or more consumers,…
Exponential Backoff - CI/CD Glossary DefinitionExponential Backoff: Exponential backoff is a retry strategy that doubles the wait between attempts (1s, 2s,…