Build Queue - CI/CD用語集の定義
build queue は、実行するための空いた runner を待っている CI ジョブを保持します。
build queue は、利用可能な runner を待っているジョブの順序付きバックログです。キュー時間 (ジョブが開始するまで待つ時間) は、実行時間とは別の主要な CI の健全性メトリクスです。
キュー時間の読み方
キュー時間が長いということは、需要が runner の容量を超えていることを意味します。warm pool と autoscaling はそれを縮め、並列数の制限や必須チェックはそれを長くすることがあります。
関連ガイド
Build Node - CI/CD Glossary DefinitionBuild Node: A build node is one compute instance in a fleet of CI runners. Jobs are dispatched to available n…
Warm Pool - CI/CD Glossary DefinitionWarm Pool: A **warm pool** is a set of pre-booted runners kept ready so jobs start almost instantly instead o…
Concurrency - CI/CD Glossary DefinitionConcurrency: **Concurrency** controls limit how many runs of a workflow execute at once, and can cancel super…