You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make AgentConnectTaskPool core and max pool sizes configurable via global config (#839)
Replaces hardcoded values of 100/500 in initConnectExecutor() with ConfigKeys
agent.connect.executor.core.pool.size (default 100) and
agent.connect.executor.max.pool.size (default 500).
Copy file name to clipboardExpand all lines: engine/orchestration/src/main/java/com/cloud/agent/manager/AgentManagerImpl.java
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -248,6 +248,10 @@ public class AgentManagerImpl extends ManagerBase implements AgentManager, Handl
248
248
"Percentage (as a value between 0 and 1) of direct.agent.pool.size to be used as upper thread cap for a single direct agent to process requests", false);
"This parameter allows developers to enable a check to see if a transaction wraps commands that are sent to the resource. This is not to be enabled on production systems.", true);
0 commit comments