You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by GitBox <gi...@apache.org> on 2018/08/07 15:08:13 UTC

[GitHub] dawidwys closed pull request #6110: [hotfix] fix EXECUTION_FAILOVER_STRATEGY's comments error and its inf…

dawidwys closed pull request #6110: [hotfix] fix EXECUTION_FAILOVER_STRATEGY's comments error and its inf…
URL: https://github.com/apache/flink/pull/6110
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

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 add8e68c26d..a022509d5bf 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
@@ -90,12 +90,14 @@
 			.withDescription("The maximum number of prior execution attempts kept in history.");
 
 	/**
-	 * The maximum number of prior execution attempts kept in history.
+	 * The failover strategy which decide how the job computation recovers from task failures.
 	 */
 	public static final ConfigOption<String> EXECUTION_FAILOVER_STRATEGY =
 		key("jobmanager.execution.failover-strategy")
 			.defaultValue("full")
-			.withDescription("The maximum number of prior execution attempts kept in history.");
+			.withDescription("The failover strategy which decide how the job computation recovers from task failures." +
+				"Currently it supports 3 values: full stands for RestartAllStrategy, individual stands for RestartIndividualStrategy and " +
+				"region stands for RestartPipelinedRegionStrategy.");
 
 	/**
 	 * This option specifies the interval in order to trigger a resource manager reconnection if the connection


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services