Reputation: 9961
Can anybody explain me why "Configuration" section of running job in Apache Flink Dashboard is empty?
How to use this job configuration in my flow? Seems like this is not described in documentation.
Upvotes: 1
Views: 174
Reputation: 13346
The configuration tab of a running job shows the values of the ExecutionConfig
. Depending on the version of Flink you might will experience a different behaviour.
The ExecutionConfig
is only accessible for finished jobs. For running jobs, it is not possible to access it. Once the job has finished or has been stopped/cancelled, you should be able to see the ExecutionConfig
.
The ExecutionConfig
can also be accessed for running jobs.
Upvotes: 2