This is an automated email from the ASF dual-hosted git repository.
dwysakowicz pushed a commit to branch release-1.14
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-1.14 by this push:
new bfc108f [FLINK-25160][docs] Clarified purpose of
execution.checkpointing.tolerable-failed-checkpoints
bfc108f is described below
commit bfc108fc3c815f4381a26656b72c42ed0e4c0883
Author: Anton Kalashnikov <[email protected]>
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 a9fa7ca..7400fd3 100644
---
a/docs/layouts/shortcodes/generated/execution_checkpointing_configuration.html
+++
b/docs/layouts/shortcodes/generated/execution_checkpointing_configuration.html
@@ -66,7 +66,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 536788b..10e06aa 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
@@ -84,7 +84,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>