YARN-3554. Default value for maximum nodemanager connect wait time is too high. Contributed by Naganarasimha G R
(cherry picked from commit9757864fd6
) (cherry picked from commit1b95bf9e1b
)
This commit is contained in:
parent
4104ab346f
commit
c4cbbcbc26
|
@ -24,6 +24,9 @@ Release 2.6.2 - UNRELEASED
|
|||
YARN-4087. Followup fixes after YARN-2019 regarding RM behavior when
|
||||
state-store error occurs. (Jian He via xgong)
|
||||
|
||||
YARN-3554. Default value for maximum nodemanager connect wait time is too
|
||||
high (Naganarasimha G R via jlowe)
|
||||
|
||||
Release 2.6.1 - 2015-09-23
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -1465,7 +1465,7 @@ public class YarnConfiguration extends Configuration {
|
|||
public static final String CLIENT_NM_CONNECT_MAX_WAIT_MS =
|
||||
YARN_PREFIX + "client.nodemanager-connect.max-wait-ms";
|
||||
public static final long DEFAULT_CLIENT_NM_CONNECT_MAX_WAIT_MS =
|
||||
15 * 60 * 1000;
|
||||
3 * 60 * 1000;
|
||||
|
||||
/** Time interval between each attempt to connect to NM */
|
||||
public static final String CLIENT_NM_CONNECT_RETRY_INTERVAL_MS =
|
||||
|
|
|
@ -1127,7 +1127,7 @@
|
|||
<property>
|
||||
<description>Max time to wait to establish a connection to NM</description>
|
||||
<name>yarn.client.nodemanager-connect.max-wait-ms</name>
|
||||
<value>900000</value>
|
||||
<value>180000</value>
|
||||
</property>
|
||||
|
||||
<property>
|
||||
|
|
Loading…
Reference in New Issue