fix(runtime): 릴리스 빌드 PID 여유를 확보

여러 profile PM2 프로세스가 실행 중에도 Gateway 릴리스 빌드가 thread 생성 한도에 걸리지 않도록 운영 runtime 기본 PID 상한을 512로 높이고 문서와 예제를 맞춘다.
This commit is contained in:
2026-08-17 14:48:16 +00:00
parent 077a97f999
commit bd03ce9e58
3 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -125,7 +125,7 @@ services:
mem_limit: ${RUNTIME_MEMORY_LIMIT:-4g}
memswap_limit: ${RUNTIME_MEMORY_SWAP_LIMIT:-4g}
cpus: ${RUNTIME_CPU_LIMIT:-4}
pids_limit: ${RUNTIME_PIDS_LIMIT:-256}
pids_limit: ${RUNTIME_PIDS_LIMIT:-512}
stop_grace_period: 30s
restart: unless-stopped