From 520ec7dfaf1ff50e525eeac35c8f9e3765bcbb07 Mon Sep 17 00:00:00 2001 From: cryptooda Date: Tue, 6 Jan 2026 17:09:10 +0700 Subject: [PATCH] Update MaxConcurrentPerInstance in production settings - Reduced the MaxConcurrentPerInstance value from 60 to 30 to optimize resource allocation and improve system performance under load. - This change aims to enhance stability and responsiveness of the worker backtest compute process. --- src/Managing.Workers/appsettings.ProductionRemote.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Managing.Workers/appsettings.ProductionRemote.json b/src/Managing.Workers/appsettings.ProductionRemote.json index 1aa46bde..cc512b7f 100644 --- a/src/Managing.Workers/appsettings.ProductionRemote.json +++ b/src/Managing.Workers/appsettings.ProductionRemote.json @@ -2,7 +2,7 @@ "WorkerBacktestCompute": true, "BacktestComputeWorker": { "MaxConcurrentPerUser": 15, - "MaxConcurrentPerInstance": 60, + "MaxConcurrentPerInstance": 30, "JobPollIntervalSeconds": 5, "HeartbeatIntervalSeconds": 30, "StaleJobTimeoutMinutes": 10