What is the general recommendation for setting base pool parameters and maximum size?

For example, if a processor has four cores and eight main threads.

  • Should I set the core-pool-size-factor parameter to 8?
  • What is a good overall size for max-pool-size-factor relative to core-pool-size-factor ?
  • Are there any other settings that I mentioned that are related to the Akka configuration?
+3
source share
1 answer

core-pool-size-factor 1.0 will be 1.0 x the number of logical processors available for the runtime.

max-pool-size-factor , -, (ThreadPoolExecutor , )

+3

All Articles