Hi,
For savepoint, the dir looks like
s3://bucket/savepoint-jobid/*
To resume, i do:
flink run -s s3://bucket/savepoint-jobid/
perfect!
For checkpoint, the dir looks like
s3://bucket/jobid/chk-100
s3://bucket/jobid/shared. <-- what is this for?
To resume, which one should i do:
flink run -s s3://bucket/jobid
or
flink run -s s3://bucket/jobid/chk-100
Another question, I saw that `flink cancel` is deprecated and recommend to use `flink stop`. But isn't this causing production down time? In order to avoid down time, is it recommended to just do `flink savepoint`?
Thanks,
Fanbin