This is an automated email from the ASF dual-hosted git repository.

trohrmann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 711ead4  [hotfix] Fix incorrect state.backend.local-recovery 
description
711ead4 is described below

commit 711ead45dd4185e016287c6cd4f7ca78abe6ebe7
Author: Till Rohrmann <[email protected]>
AuthorDate: Mon Oct 4 11:52:39 2021 +0200

    [hotfix] Fix incorrect state.backend.local-recovery description
    
    State that only the MemoryStateBackend does not support local recovery.
---
 docs/layouts/shortcodes/generated/checkpointing_configuration.html    | 2 +-
 docs/layouts/shortcodes/generated/common_state_backends_section.html  | 2 +-
 .../java/org/apache/flink/configuration/CheckpointingOptions.java     | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/docs/layouts/shortcodes/generated/checkpointing_configuration.html 
b/docs/layouts/shortcodes/generated/checkpointing_configuration.html
index 8a38c01..cd38286 100644
--- a/docs/layouts/shortcodes/generated/checkpointing_configuration.html
+++ b/docs/layouts/shortcodes/generated/checkpointing_configuration.html
@@ -30,7 +30,7 @@
             <td><h5>state.backend.local-recovery</h5></td>
             <td style="word-wrap: break-word;">false</td>
             <td>Boolean</td>
-            <td>This option configures local recovery for this state backend. 
By default, local recovery is deactivated. Local recovery currently only covers 
keyed state backends. Currently, MemoryStateBackend and HashMapStateBackend do 
not support local recovery and ignore this option.</td>
+            <td>This option configures local recovery for this state backend. 
By default, local recovery is deactivated. Local recovery currently only covers 
keyed state backends. Currently, the MemoryStateBackend does not support local 
recovery and ignores this option.</td>
         </tr>
         <tr>
             <td><h5>state.checkpoint-storage</h5></td>
diff --git 
a/docs/layouts/shortcodes/generated/common_state_backends_section.html 
b/docs/layouts/shortcodes/generated/common_state_backends_section.html
index c917bd5..d2a705df8 100644
--- a/docs/layouts/shortcodes/generated/common_state_backends_section.html
+++ b/docs/layouts/shortcodes/generated/common_state_backends_section.html
@@ -54,7 +54,7 @@
             <td><h5>state.backend.local-recovery</h5></td>
             <td style="word-wrap: break-word;">false</td>
             <td>Boolean</td>
-            <td>This option configures local recovery for this state backend. 
By default, local recovery is deactivated. Local recovery currently only covers 
keyed state backends. Currently, MemoryStateBackend and HashMapStateBackend do 
not support local recovery and ignore this option.</td>
+            <td>This option configures local recovery for this state backend. 
By default, local recovery is deactivated. Local recovery currently only covers 
keyed state backends. Currently, the MemoryStateBackend does not support local 
recovery and ignores this option.</td>
         </tr>
         <tr>
             <td><h5>state.checkpoints.num-retained</h5></td>
diff --git 
a/flink-core/src/main/java/org/apache/flink/configuration/CheckpointingOptions.java
 
b/flink-core/src/main/java/org/apache/flink/configuration/CheckpointingOptions.java
index 93c0f9f..b1717ee 100644
--- 
a/flink-core/src/main/java/org/apache/flink/configuration/CheckpointingOptions.java
+++ 
b/flink-core/src/main/java/org/apache/flink/configuration/CheckpointingOptions.java
@@ -187,8 +187,8 @@ public class CheckpointingOptions {
                     .defaultValue(false)
                     .withDescription(
                             "This option configures local recovery for this 
state backend. By default, local recovery is "
-                                    + "deactivated. Local recovery currently 
only covers keyed state backends. Currently, MemoryStateBackend and "
-                                    + "HashMapStateBackend do not support 
local recovery and ignore this option.");
+                                    + "deactivated. Local recovery currently 
only covers keyed state backends. Currently, the MemoryStateBackend "
+                                    + "does not support local recovery and 
ignores this option.");
 
     /**
      * The config parameter defining the root directories for storing 
file-based state for local

Reply via email to