sjwiesman commented on a change in pull request #18223:
URL: https://github.com/apache/flink/pull/18223#discussion_r793739412



##########
File path: 
flink-libraries/flink-state-processing-api/src/main/java/org/apache/flink/state/api/Savepoint.java
##########
@@ -50,16 +50,45 @@
 
     private Savepoint() {}
 
+    /**
+     * Loads an existing savepoint. Useful if you want to query, modify, or 
extend the state of an
+     * existing application. The savepoint will be read using the state 
backend defined via the
+     * clusters configuration.
+     *
+     * @param env The execution environment used to transform the savepoint.
+     * @param path The path to an existing savepoint on disk.
+     * @see #load(ExecutionEnvironment, String, StateBackend)
+     */
+    public static ExistingSavepoint load(ExecutionEnvironment env, String 
path) throws IOException {

Review comment:
       This class is deprecated and will likely be dropped in 1.16, I'd rather 
not touch it. 




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to