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

commit 3b85948a1d59c2310beac8dacb535253ca60317b
Author: Till Rohrmann <trohrm...@apache.org>
AuthorDate: Fri Nov 16 17:53:22 2018 +0100

    [FLINK-10880] Exclude JobManagerOptions#EXECUTION_FAILOVER_STRATEGY from 
documentation
    
    This commit excludes the JobManagerOptions#EXECUTION_FAILOVER_STRATEGY from 
Flink's
    configuration documentation.
---
 docs/_includes/generated/job_manager_configuration.html              | 5 -----
 .../main/java/org/apache/flink/configuration/JobManagerOptions.java  | 1 +
 2 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/docs/_includes/generated/job_manager_configuration.html 
b/docs/_includes/generated/job_manager_configuration.html
index 0458af2..99eec1d 100644
--- a/docs/_includes/generated/job_manager_configuration.html
+++ b/docs/_includes/generated/job_manager_configuration.html
@@ -18,11 +18,6 @@
             <td>The maximum number of prior execution attempts kept in 
history.</td>
         </tr>
         <tr>
-            <td><h5>jobmanager.execution.failover-strategy</h5></td>
-            <td style="word-wrap: break-word;">"full"</td>
-            <td>This option specifies how the job computation recovers from 
task failures. Accepted values are:<ul><li>'full': Restarts all 
tasks.</li><li>'individual': Restarts only the failed task. Should only be used 
if all tasks are independent components.</li><li>'region': Restarts all tasks 
that could be affected by the task failure.</li></ul></td>
-        </tr>
-        <tr>
             <td><h5>jobmanager.heap.size</h5></td>
             <td style="word-wrap: break-word;">"1024m"</td>
             <td>JVM heap size for the JobManager.</td>
diff --git 
a/flink-core/src/main/java/org/apache/flink/configuration/JobManagerOptions.java
 
b/flink-core/src/main/java/org/apache/flink/configuration/JobManagerOptions.java
index 1666f21..cb2dbe6 100644
--- 
a/flink-core/src/main/java/org/apache/flink/configuration/JobManagerOptions.java
+++ 
b/flink-core/src/main/java/org/apache/flink/configuration/JobManagerOptions.java
@@ -106,6 +106,7 @@ public class JobManagerOptions {
        /**
         * This option specifies the failover strategy, i.e. how the job 
computation recovers from task failures.
         */
+       @Documentation.ExcludeFromDocumentation("The failover strategy feature 
is highly experimental.")
        public static final ConfigOption<String> EXECUTION_FAILOVER_STRATEGY =
                key("jobmanager.execution.failover-strategy")
                        .defaultValue("full")

Reply via email to