nicolasraga1 commented on a change in pull request #16946:
URL: https://github.com/apache/flink/pull/16946#discussion_r696223038



##########
File path: 
flink-core/src/main/java/org/apache/flink/configuration/RestOptions.java
##########
@@ -160,6 +160,20 @@
                     .withDescription(
                             "The number of threads for the asynchronous 
processing of requests.");
 
+    @Documentation.Section(Documentation.Sections.EXPERT_REST)
+    public static final ConfigOption<Integer> JOBMANAGER_FUTURE_THREADS =
+            key("jobmanager.future-executor.numThreads")
+                    .defaultValue(0)
+                    .withDescription(
+                            "The number of jobmanager future-executor threads 
for shared services.");
+
+    @Documentation.Section(Documentation.Sections.EXPERT_REST)
+    public static final ConfigOption<Integer> JOBMANAGER_IO_THREADS =
+            key("jobmanager.io-executor.numThreads")
+                    .defaultValue(0)
+                    .withDescription(
+                            "The number of jobmanager io-executor threads for 
shared services.");

Review comment:
       You think `ClusterOptions.CLUSTER_IO_EXECUTOR_POOL_SIZE` should control 
both the `ClusterEntrypoint` and the `JobMaster`? Seems like we would want 
arbitrary control over either. 




-- 
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.

To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to