cgroup - CI/CD用語集の定義
cgroup(control group)は、一連のプロセスのCPU、メモリ、I/Oを制限・計測するLinuxの仕組みです。コンテナのメモリ制限やOOM killはここで適用されます。
関連ガイド
ulimit - CI/CD Glossary Definitionulimit sets per-process resource limits - open files, memory, processes. A too-low file-descriptor ulimit cau…
OOM (Out of Memory) - CI/CD Glossary DefinitionOOM (Out of Memory): **OOM** is when a process exceeds available memory and the kernel kills it. On CI runner…
SIGKILL - CI/CD Glossary DefinitionSIGKILL: **SIGKILL** (signal 9) force-terminates a process immediately and cannot be caught. In CI it usually…