Description
HttpServer2 starts up with some number of acceptors and selectors, but only allows for the automatic configuration of these based off of the number of available cores:
org.eclipse.jetty.server.ServerConnector
selectors > 0 ? selectors : Math.max(1, Math.min(4, Runtime.getRuntime().availableProcessors() / 2)))
org.eclipse.jetty.server.AbstractConnector
if (acceptors < 0) { acceptors = Math.max(1, Math.min(4, cores / 8)); }
A thread pool is started of size, at minimum, acceptors + selectors + 1, so in addition to allowing for a higher tuning value under heavily loaded environments, adding configurability for this enables tuning these values down in resource constrained environments such as a MiniDFSCluster.
Attachments
Attachments
Issue Links
- is depended upon by
-
HDFS-13265 MiniDFSCluster should set reasonable defaults to reduce resource consumption
-
- Patch Available
-