[BugFix] fix too many open files problem (#3275)

This commit is contained in:
ltd0924
2025-08-08 20:11:32 +08:00
committed by GitHub
parent 1b6f482c15
commit 6706ccb37e
6 changed files with 177 additions and 22 deletions

View File

@@ -82,6 +82,8 @@ environment_variables: dict[str, Callable[[], Any]] = {
"ENABLE_V1_KVCACHE_SCHEDULER": lambda: int(os.getenv("ENABLE_V1_KVCACHE_SCHEDULER", "0")),
# set trace attribute job_id.
"FD_JOB_ID": lambda: os.getenv("FD_JOB_ID"),
# support max connections
"FD_SUPPORT_MAX_CONNECTIONS": lambda: 768,
}