Connection Pool - CI/CD用語集の定義
connection poolは、確立済みの接続(データベース、registry、HTTPホストへの)の再利用可能なセットを維持し、呼び出し側が借りて返すことでリクエストごとのセットアップコストをなくします。小さすぎるプールは作業を直列化し、CIのテスト時間を膨らませます。
関連ガイド
HTTP Keep-Alive - CI/CD Glossary DefinitionHTTP keep-alive reuses one TCP connection for multiple requests instead of reconnecting each time, removing h…
Socket - CI/CD Glossary DefinitionA socket is the OS endpoint for network communication, identified by an IP and port. Programs read and write…
Request Timeout - CI/CD Glossary DefinitionA request timeout caps total time waiting for an operation before giving up, so a stuck call fails fast inste…