mxm commented on code in PR #724: URL: https://github.com/apache/flink-kubernetes-operator/pull/724#discussion_r1419018998
########## flink-kubernetes-operator/src/main/java/org/apache/flink/kubernetes/operator/reconciler/deployment/AbstractJobReconciler.java: ########## @@ -306,6 +319,40 @@ protected void resubmitJob(FlinkResourceContext<CR> ctx, boolean requireHaMetada restoreJob(ctx, specToRecover, ctx.getObserveConfig(), requireHaMetadata); } + private void redeployWithSavepoint( + FlinkResourceContext<CR> ctx, + Configuration deployConfig, + CR resource, + STATUS status, + SPEC currentDeploySpec, + JobState desiredJobState) + throws Exception { + LOG.info("Redeploying from savepoint"); + cancelJob(ctx, UpgradeMode.STATELESS); + var savepointOpt = + Optional.ofNullable(currentDeploySpec.getJob().getInitialSavepointPath()); + currentDeploySpec + .getJob() + .setUpgradeMode( + savepointOpt.isPresent() ? UpgradeMode.SAVEPOINT : UpgradeMode.STATELESS); Review Comment: As I said, I would not expect the savepoint loading to go through if the savepoint path is set. -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org