From 301dab1ed425c78def8f78d9a62b858c23411c53 Mon Sep 17 00:00:00 2001 From: Alexandru Gheorghe Date: Tue, 22 Aug 2023 14:22:03 +0300 Subject: [PATCH] Increase num-workers Signed-off-by: Alexandru Gheorghe --- node/core/pvf/src/host.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/node/core/pvf/src/host.rs b/node/core/pvf/src/host.rs index 9f3b7e23fd89..aadc14775025 100644 --- a/node/core/pvf/src/host.rs +++ b/node/core/pvf/src/host.rs @@ -186,7 +186,8 @@ impl Config { prepare_workers_hard_max_num: 1, execute_worker_program_path, execute_worker_spawn_timeout: Duration::from_secs(3), - execute_workers_max_num: 2, + // TODO: cleanup increased for versi experimenting. + execute_workers_max_num: 4, } } }