Thread Pool - CI/CD用語集の定義
Thread pool は、キューからタスクを実行する寿命の長いワーカースレッドの限られたセットを維持し、スレッド生成コストを償却するとともに並行性に上限を設けるため、大量の作業が際限なくスレッドを生成してメモリを枯渇させることを防ぎます。
関連ガイド
Work Queue - CI/CD Glossary DefinitionA work queue holds pending tasks that worker threads pull and execute, decoupling submission from execution a…
Fiber - CI/CD Glossary DefinitionA fiber is a lightweight, cooperatively scheduled thread of execution managed in user space, letting one OS t…
Green Thread - CI/CD Glossary DefinitionA green thread is a thread scheduled by a language runtime instead of the OS, so a program runs millions chea…