Heap Profiling - CI/CD用語集の定義
ヒーププロファイリングは、時間の経過とともに割り当て箇所と保持されるオブジェクトを記録し、メモリ使用を特定のコードパスに帰属させます。OOM kill の背後にある leak や肥大化を突き止める標準的な方法です。
関連ガイド
Memory Leak - CI/CD Glossary DefinitionA memory leak is memory a program allocates but never releases, so usage climbs until the process is killed -…
Flame Graph - CI/CD Glossary DefinitionA flame graph visualizes profiling data as stacked bars where width is time spent, making the hottest call pa…
Garbage Collection - CI/CD Glossary DefinitionGarbage collection automatically reclaims memory no longer reachable, freeing developers from manual frees bu…