Work Queue - CI/CD用語集の定義
Work queue は、ワーカーのプールがデキューして処理する保留中タスクのバッファであり、生産者と消費者を分離することでバースト的な投入を平準化し、並列度が到着レートではなくワーカー数によって制限されるようにします。
関連ガイド
Thread Pool - CI/CD Glossary DefinitionA thread pool keeps a fixed set of reusable threads to run submitted tasks, avoiding per-task thread creation…
Event Loop - CI/CD Glossary DefinitionAn event loop repeatedly waits for events - I/O readiness, timers, messages - and dispatches their handlers o…
Structured Concurrency - CI/CD Glossary DefinitionStructured concurrency scopes concurrent tasks to a block so they all finish or cancel before it exits, makin…