YARN-3238. Connection timeouts to nodemanagers are retried at multiple
levels. Contributed by Jason Lowe (cherry picked from commit92d67ace32
) (cherry picked from commitfefeba4ac8
) (cherry picked from commit d8f02e1c5c3bcc230d942554b2f4cfbc3ed21526)
This commit is contained in:
parent
342504f790
commit
4fcf71c1e7
|
@ -82,6 +82,9 @@ Release 2.6.1 - UNRELEASED
|
|||
YARN-3207. Secondary filter matches entites which do not have the key being
|
||||
filtered for. (Zhijie Shen via xgong)
|
||||
|
||||
YARN-3238. Connection timeouts to nodemanagers are retried at
|
||||
multiple levels (Jason Lowe via xgong)
|
||||
|
||||
Release 2.6.0 - 2014-11-18
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -72,7 +72,6 @@ public class ServerProxy {
|
|||
exceptionToPolicyMap.put(ConnectException.class, retryPolicy);
|
||||
exceptionToPolicyMap.put(NoRouteToHostException.class, retryPolicy);
|
||||
exceptionToPolicyMap.put(UnknownHostException.class, retryPolicy);
|
||||
exceptionToPolicyMap.put(ConnectTimeoutException.class, retryPolicy);
|
||||
exceptionToPolicyMap.put(RetriableException.class, retryPolicy);
|
||||
exceptionToPolicyMap.put(SocketException.class, retryPolicy);
|
||||
|
||||
|
|
Loading…
Reference in New Issue