-
Notifications
You must be signed in to change notification settings - Fork 68
Closed
Labels
priority: p2Moderately-important priority. Fix may not be included in next release.Moderately-important priority. Fix may not be included in next release.type: feature request‘Nice-to-have’ improvement, new feature or different behavior or design.‘Nice-to-have’ improvement, new feature or different behavior or design.
Description
For the InstantiatingExecutorProvider, log the thread pool size for users to determine.
Lines 95 to 102 in 5dadd4c
public static Builder newIOBuilder() { | |
int numCpus = Runtime.getRuntime().availableProcessors(); | |
int numThreads = IO_THREAD_MULTIPLIER * Math.max(MIN_THREAD_AMOUNT, numCpus); | |
return new AutoValue_InstantiatingExecutorProvider.Builder() | |
.setExecutorThreadCount(numThreads) | |
.setThreadFactory(DEFAULT_THREAD_FACTORY); | |
} |
Metadata
Metadata
Assignees
Labels
priority: p2Moderately-important priority. Fix may not be included in next release.Moderately-important priority. Fix may not be included in next release.type: feature request‘Nice-to-have’ improvement, new feature or different behavior or design.‘Nice-to-have’ improvement, new feature or different behavior or design.