Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JENKINS-68116 Make event thread pool size customize-able #124

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/main/java/jenkins/scm/api/SCMEvent.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
import java.util.concurrent.locks.ReentrantLock;
import javax.servlet.http.HttpServletRequest;
import jenkins.security.ImpersonatingScheduledExecutorService;
import jenkins.util.SystemProperties;
import org.acegisecurity.context.SecurityContext;
import org.acegisecurity.context.SecurityContextHolder;
import org.apache.commons.lang.StringUtils;
Expand Down Expand Up @@ -107,6 +108,9 @@ public abstract class SCMEvent<P> {
* @since 2.0.3
*/
public static final String ORIGIN_UNKNOWN = "?";

private static final int EVENT_THREAD_POOL_SIZE = SystemProperties
.getInteger(SCMEvent.class.getName() + ".EVENT_THREAD_POOL_SIZE", 10);
/**
* The event type.
*/
Expand Down Expand Up @@ -213,7 +217,7 @@ protected SCMEvent(SCMEvent<P> copy) {
protected static synchronized ScheduledExecutorService executorService() {
if (executorService == null) {
threadPoolExecutor = new ScheduledThreadPoolExecutor(
10,
EVENT_THREAD_POOL_SIZE,
new NamingThreadFactory(
new ClassLoaderSanityThreadFactory(new DaemonThreadFactory()), "SCMEvent")
);
Expand Down