morhidi commented on code in PR #362:
URL: 
https://github.com/apache/flink-kubernetes-operator/pull/362#discussion_r974107812


##########
flink-kubernetes-operator/src/main/java/org/apache/flink/kubernetes/operator/FlinkOperator.java:
##########
@@ -113,6 +113,9 @@ private void 
overrideOperatorConfigs(ConfigurationServiceOverrider overrider) {
         } else {
             LOG.info("Configuring operator with {} reconciliation threads.", 
parallelism);
             overrider.withConcurrentReconciliationThreads(parallelism);
+            // feat: separate executor service for workflow
+            // https://github.com/java-operator-sdk/java-operator-sdk/pull/1371
+            
overrider.withExecutorService(Executors.newFixedThreadPool(parallelism));

Review Comment:
   Hi @SteNicholas Could you please explain why we need this extra config here? 
Is it ok if we control it with the same config?



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