Github user tillrohrmann commented on a diff in the pull request:
https://github.com/apache/flink/pull/5431#discussion_r167853004
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/entrypoint/ClusterEntrypoint.java
---
@@ -300,4 +587,12 @@ protected static ClusterConfiguration
parseArguments(String[] args) {
protected static Configuration loadConfiguration(ClusterConfiguration
clusterConfiguration) {
return
GlobalConfiguration.loadConfiguration(clusterConfiguration.getConfigDir());
}
+
+ /**
+ * Execution mode of the {@link MiniDispatcher}.
+ */
+ public enum ExecutionMode {
+ NORMAL, // waits until the job result has been served
--- End diff --
True. Will do.
---