-
Improvement
-
Resolution: Unresolved
-
Minor
When triggering more than 2 concurrent jobs with the Operations orchestation plugin, only 2 run at the same time.
i went over the code in github and i think this class is causing it:
line 40 : import org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager;
line 111 : httpClient = new DefaultHttpClient(new ThreadSafeClientConnManager());
the "ThreadSafeClientConnManager" is limited by default to creating only 2 connections to a host at the same time.
you might want to try something like :
line 111 : httpClient = new DefaultHttpClient(new ThreadSafeClientConnManager().setDefaultMaxPerRoute(10));
[JENKINS-29241] Cant run more than 2 runs in parallel using the plugin
Workflow | Original: JNJira [ 164110 ] | New: JNJira + In-Review [ 181510 ] |
Can you please give me more details.
What version of Operations Orchestration did you try to run?