-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ExecutionEnvironment.execute() should not be called when no sinks are defined. #15
Comments
This can not only happen in |
You can use |
Alternatively, use the |
Unfortunately, |
Mabe the "final" |
Currently we call
env.execute()
after the execution of all program blocks if theExecutionContext
is of typeFlinkExecutionContext
.In
hybrid_flink
mode this leads to the problem thatexecute()
can be called even though no sinks are defined.We should somehow check if an adequate plan exists before calling
execute()
.The text was updated successfully, but these errors were encountered: