csviri commented on code in PR #362:
URL:
https://github.com/apache/flink-kubernetes-operator/pull/362#discussion_r974168823
##########
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:
yes, sorry, this seems to be an issue with the overrider, created a PR to
fix it
https://github.com/java-operator-sdk/java-operator-sdk/pull/1484
pls for now override the service creation like above:
`overrider.withExecutorService`
--
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]