> On 01 Feb 2016, at 17:14, Don Frascuchon <frascuc...@gmail.com> wrote: > > Hi, > > In reference with this topic, there is any feature for automatically restart > job after a task exception? Like --supervise command line option in apache > spark
If you are referring to job manager/task manager instances: No. Currently, the recommended way is to run with YARN in order to get this behaviour. If you are referring to tasks: you can enable this via the ExecutionConfig (https://ci.apache.org/projects/flink/flink-docs-master/apis/batch/index.html#execution-configuration) via setNumberOfExecutionRetries() and setExecutionRetryDelay(). Does this help? – Ufuk