spoon-lz commented on code in PR #24374:
URL: https://github.com/apache/flink/pull/24374#discussion_r1612844096


##########
flink-core/src/main/java/org/apache/flink/configuration/CheckpointingOptions.java:
##########
@@ -438,4 +445,332 @@ public class CheckpointingOptions {
                             "Space amplification stands for the magnification 
of the occupied space compared to the amount of valid data. "
                                     + "The more space amplification is, the 
more waste of space will be. This configs a space amplification "
                                     + "above which a re-uploading for physical 
files will be triggered to reclaim space.");
+
+    @Deprecated
+    @Documentation.ExcludeFromDocumentation("Hidden for deprecatd.")
+    public static final ConfigOption<CheckpointingMode> CHECKPOINTING_MODE =
+            ConfigOptions.key("execution.checkpointing.mode")
+                    .enumType(CheckpointingMode.class)
+                    .defaultValue(CheckpointingMode.EXACTLY_ONCE)
+                    .withDescription("The checkpointing mode (exactly-once vs. 
at-least-once).");

Review Comment:
   You're right, I will delete these deprecated options



-- 
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

Reply via email to