Hi Does this chapter is outdated with Flink 1.11 ?
https://ci.apache.org/projects/flink/flink-docs-release-1.12/ops/state/savepoints.html#can-i-move-the-savepoint-files-on-stable-storage *Can I move the Savepoint files on stable storage?* *The quick answer to this question is currently “no” because the meta data file references the files on stable storage as absolute paths for technical reasons. The longer answer is: if you MUST move the files for some reason there are two potential approaches as workaround. First, simpler but potentially more dangerous, you can use an editor to find the old path in the meta data file and replace them with the new path. Second, you can use the class SavepointV2Serializer as starting point to programmatically read, manipulate, and rewrite the meta data file with the new paths.* <https://ci.apache.org/projects/flink/flink-docs-release-1.12/ops/state/savepoints.html#top> Thanks Farouk