From 8a5f418ac09704bf464179df3d6aef85e7334a5d Mon Sep 17 00:00:00 2001 From: weijie <609587797@qq.com> Date: Tue, 7 Jul 2026 17:27:20 +0800 Subject: [PATCH] Raise runner prepare defaults --- trinity/common/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trinity/common/config.py b/trinity/common/config.py index 2d231490c55..9d0ca6382a5 100644 --- a/trinity/common/config.py +++ b/trinity/common/config.py @@ -733,8 +733,8 @@ class ExplorerConfig: # for workflow runner # number of workflow runners. runner_per_model: int = 8 # number of runners per each rollout model - runner_prepare_concurrency: int = 8 # cap concurrent prepares (glibc getenv race) - runner_prepare_max_retries: int = 2 # retry prepare on transient crash + runner_prepare_concurrency: int = 128 # cap concurrent prepares (glibc getenv race) + runner_prepare_max_retries: int = 3 # retry prepare on transient crash max_timeout: int = 1800 # wait each task for 30 minutes at most max_retry_times: int = 2 # retry each task for 2 times if it fails or timeout env_vars: dict = field(default_factory=dict) # environment variables for workflow runner