Memory Leak - CI/CD用語集の定義
メモリリークは、確保したメモリがもはや不要なのに決して解放されない(または参照され続ける)ときに発生し、使用量が際限なく増加してプロセスが OOM で kill されるまで続きます。長時間実行の CI job ではこれが exit 137 として現れます。
関連ガイド
Heap Profiling - CI/CD Glossary DefinitionHeap profiling samples where a program allocates memory and what stays live, helping find leaks and bloat tha…
Garbage Collection - CI/CD Glossary DefinitionGarbage collection automatically reclaims memory no longer reachable, freeing developers from manual frees bu…
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…