Hi I am using Flink 1.3.2 on K8S, and need a deployment strategy for my app.
I want to use savepoints to resume a job after each deployment. As you know I need jar file name and path to savepoints to resume a task. Currently `flink list` command only gives me job ids, not jar file names. And REST API does not have that information as well. If I have multiple jar files how can I map the savepoints back to jars, so I can resume my task? I thought about save the jar to jid map somewhere, but Flink can reschedule a task on failures, so the map will be stale. Any thoughts is appreciated. Many thanks.