tillrohrmann commented on a change in pull request #16946:
URL: https://github.com/apache/flink/pull/16946#discussion_r694999155
##########
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:
We could then also reuse the `ClusterEntrypointUtils.getPoolSize`.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]