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

trohrmann 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 4645c1d  [hotfix] Fix incorrect state.backend.local-recovery 
description
4645c1d is described below

commit 4645c1da5b113c1bf477fba79beb8665b6219d6e
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 bb0b1ba..938a6b6 100644
--- a/docs/layouts/shortcodes/generated/checkpointing_configuration.html
+++ b/docs/layouts/shortcodes/generated/checkpointing_configuration.html
@@ -18,7 +18,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 acfa182..dcef4b1 100644
--- a/docs/layouts/shortcodes/generated/common_state_backends_section.html
+++ b/docs/layouts/shortcodes/generated/common_state_backends_section.html
@@ -42,7 +42,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 049178e..ac64e5c 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
@@ -159,8 +159,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