tillrohrmann commented on a change in pull request #6339: [FLINK-9859] [runtime] distinguish JM akka config URL: https://github.com/apache/flink/pull/6339#discussion_r208240548
########## File path: flink-yarn/src/main/java/org/apache/flink/yarn/YarnApplicationMasterRunner.java ########## @@ -278,6 +279,15 @@ protected int runApplicationMaster(Configuration config) { // ----------------- (2) start the actor system ------------------- + // Enlarge thread pool to improve the performance of ActorSystem. + config.setDouble(AkkaOptions.FORK_JOIN_EXECUTOR_PARALLELISM_FACTOR, 1.0); + config.setInteger(AkkaOptions.FORK_JOIN_EXECUTOR_PARALLELISM_MIN, 16); + config.setInteger(AkkaOptions.FORK_JOIN_EXECUTOR_PARALLELISM_MAX, 64); + config.setInteger(AkkaOptions.SERVER_SOCKET_WORKER_POOL_SIZE_MIN, 8); + config.setInteger(AkkaOptions.SERVER_SOCKET_WORKER_POOL_SIZE_MAX, 64); + config.setInteger(AkkaOptions.CLIENT_SOCKET_WORKER_POOL_SIZE_MIN, 8); + config.setInteger(AkkaOptions.CLIENT_SOCKET_WORKER_POOL_SIZE_MIN, 64); Review comment: Please remove. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services