dylwylie commented on a change in pull request #9856:
URL: https://github.com/apache/druid/pull/9856#discussion_r426669089
##########
File path:
server/src/main/java/org/apache/druid/segment/loading/SegmentLoaderConfig.java
##########
@@ -50,7 +50,7 @@
private int announceIntervalMillis = 0; // do not background announce
@JsonProperty("numLoadingThreads")
- private int numLoadingThreads =
JvmUtils.getRuntimeInfo().getAvailableProcessors();
+ private int numLoadingThreads = Math.min(1,
JvmUtils.getRuntimeInfo().getAvailableProcessors() / 6);
Review comment:
whoops , thanks for catching this!
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]