@Don In Flink, the client needs not keep running, it can detach itself once the job is submitted, or stay connected and receive status messages. Since the client is not necessary for the program execution, I think you don't need "supervise" or anything like that...
On Mon, Feb 1, 2016 at 7:23 PM, Ufuk Celebi <u...@apache.org> wrote: > > > 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 > >