I am running these Flink job in a Yarn cluster. When the flink job fails or I restart it I want the Flink job to use the savepoint that was created before it restarted. How do can restart the Flink job with this savepoint. I am using Flink 1.4.2.
Asked
Active
Viewed 141 times
1 Answers
0
In order to resume from a savepoint you have to call bin/flink run -s :savepointPath [:runArgs]
where runArgs
contains the job jar.

Till Rohrmann
- 13,148
- 1
- 25
- 51
-
This works well if I am doing it directly via CLI. I am using a Yarn Client to submit the job. – user3107673 Jun 01 '18 at 15:59