0

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.

user3107673
  • 423
  • 4
  • 9

1 Answers1

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