There are 2 savepoint related REST APIs:
POST /jobs/:jobid/savepoints which triggers an async savepoint operation and returns a trigger ID.
GET /jobs/:jobid/savepoints/:triggerid which returns the status of the operation by trigger ID.
But in a distributed system, what if the operation is successfully initiated, but the response is lost (e.g., because of network issue), then the trigger ID is lost, there is not way to figure out the status of the operation.
Wondering is there a way to list Flink savepoint operations? so that I can get the trigger ID and then get the operation status.
is_savepointat each checkpoint in the json response: ci.apache.org/projects/flink/flink-docs-stable/monitoring/… - TobiSH