Load Balancer Health Check - CI/CD用語集の定義
load balancerのhealth check は、backendがサービス中かどうかを判断する定期的なプローブ(多くは /health へのHTTP GET)です。失敗したインスタンスは、再び通過するまでローテーションから外されます。
CIにおいて
deployは、新しいインスタンスがhealth checkを通過するまで本当に完了したとは言えません。blue-greenやcanaryのpipelineは、トラフィックを移す前にload balancerがtarget groupを健全と報告するのを待ちます。
関連ガイド
Connection Pool - CI/CD Glossary DefinitionConnection Pool: A connection pool is a cache of open, reusable connections (to a database or HTTP service) s…
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…
DNS Record - CI/CD Glossary DefinitionDNS Record: A DNS record maps a name to data: an A record points a hostname to an IPv4 address, AAAA to IPv6,…