Author: vinodkv
Date: Tue Dec 17 22:33:16 2013
New Revision: 1551740
URL: http://svn.apache.org/r1551740
Log:
YARN-1028. Added FailoverProxyProvider capability to ResourceManager to help
with RM failover. Contributed by Karthik Kambatla.
svn merge --ignore-ancestry -c 1551739 ../../trunk/
Modified:
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/retry/RetryPolicies.java
Modified:
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/retry/RetryPolicies.java
URL:
http://svn.apache.org/viewvc/hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/retry/RetryPolicies.java?rev=1551740&r1=1551739&r2=1551740&view=diff
==============================================================================
---
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/retry/RetryPolicies.java
(original)
+++
hadoop/common/branches/branch-2/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/retry/RetryPolicies.java
Tue Dec 17 22:33:16 2013
@@ -68,7 +68,14 @@ public class RetryPolicies {
* </p>
*/
public static final RetryPolicy RETRY_FOREVER = new RetryForever();
-
+
+ /**
+ * <p>
+ * Keep failing over forever
+ * </p>
+ */
+ public static final RetryPolicy FAILOVER_FOREVER = new FailoverForever();
+
/**
* <p>
* Keep trying a limited number of times, waiting a fixed time between
attempts,
@@ -166,6 +173,14 @@ public class RetryPolicies {
return RetryAction.RETRY;
}
}
+
+ static class FailoverForever implements RetryPolicy {
+ @Override
+ public RetryAction shouldRetry(Exception e, int retries, int failovers,
+ boolean isIdempotentOrAtMostOnce) throws Exception {
+ return RetryAction.FAILOVER_AND_RETRY;
+ }
+ }
/**
* Retry up to maxRetries.