This is an automated email from the ASF dual-hosted git repository. dwysakowicz pushed a commit to branch release-1.13 in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.13 by this push: new 90b48cb [FLINK-25160][docs] Clarified purpose of execution.checkpointing.tolerable-failed-checkpoints 90b48cb is described below commit 90b48cb21caa66bc1f036dee186e7ace983f92b4 Author: Anton Kalashnikov <kaa....@yandex.ru> AuthorDate: Thu Jan 13 16:55:16 2022 +0100 [FLINK-25160][docs] Clarified purpose of execution.checkpointing.tolerable-failed-checkpoints --- .../shortcodes/generated/execution_checkpointing_configuration.html | 2 +- .../flink/streaming/api/environment/ExecutionCheckpointingOptions.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/layouts/shortcodes/generated/execution_checkpointing_configuration.html b/docs/layouts/shortcodes/generated/execution_checkpointing_configuration.html index c9558e6..6284c38 100644 --- a/docs/layouts/shortcodes/generated/execution_checkpointing_configuration.html +++ b/docs/layouts/shortcodes/generated/execution_checkpointing_configuration.html @@ -60,7 +60,7 @@ <td><h5>execution.checkpointing.tolerable-failed-checkpoints</h5></td> <td style="word-wrap: break-word;">(none)</td> <td>Integer</td> - <td>The tolerable checkpoint failure number. If set to 0, that means we do not tolerance any checkpoint failure.</td> + <td>The tolerable checkpoint consecutive failure number. If set to 0, that means we do not tolerance any checkpoint failure.</td> </tr> <tr> <td><h5>execution.checkpointing.unaligned</h5></td> diff --git a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/environment/ExecutionCheckpointingOptions.java b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/environment/ExecutionCheckpointingOptions.java index 9e30852..3a7f761 100644 --- a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/environment/ExecutionCheckpointingOptions.java +++ b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/environment/ExecutionCheckpointingOptions.java @@ -90,7 +90,7 @@ public class ExecutionCheckpointingOptions { .intType() .noDefaultValue() .withDescription( - "The tolerable checkpoint failure number. If set to 0, that means " + "The tolerable checkpoint consecutive failure number. If set to 0, that means " + "we do not tolerance any checkpoint failure."); public static final ConfigOption<CheckpointConfig.ExternalizedCheckpointCleanup>