Ephemeral Port - CI/CD用語集の定義
エフェメラルポートは、カーネルがアウトバウンド接続のローカル側に割り当てる一時的な高番号帯のポートの1つです。多数の接続を開くジョブは範囲を使い切ることがあり(TIME_WAITでさらに悪化することが多い)、新しい接続が失敗します。
関連ガイド
Socket - CI/CD Glossary DefinitionA socket is the OS endpoint for network communication, identified by an IP and port. Programs read and write…
Port Binding - CI/CD Glossary DefinitionPort binding claims a TCP/UDP port so a service can accept connections on it. A port already in use raises EA…
Connection Pool - CI/CD Glossary DefinitionA connection pool keeps open connections ready to reuse, so callers borrow one instead of paying handshake co…