ulimit - CI/CD用語集の定義
ulimitはプロセスごとのリソース制限(オープンファイル、メモリ、プロセス数)を設定します。file descriptorの制限が低すぎると、CIで"too many open files"エラーが起きます。
関連ガイド
File Descriptor - CI/CD Glossary DefinitionA file descriptor is the integer the OS assigns a process for each open file, socket, or pipe. Exhausting the…
cgroup - CI/CD Glossary DefinitionA cgroup (control group) is a Linux feature that limits CPU, memory, and I/O for a group of processes. Contai…
Environment Variable - CI/CD Glossary DefinitionAn environment variable is a named value the OS passes to a process. CI uses them to configure builds, set PA…