YARN-1046. Disable mem monitoring my default in MiniYARNCluster (Karthik Kambatla via Sandy Ryza)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1512497 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a21debedec
commit
7f2a646af2
|
@ -499,6 +499,9 @@ Release 2.1.0-beta - 2013-08-06
|
||||||
|
|
||||||
YARN-84. Use Builder to build RPC server. (Brandon Li via szetszwo)
|
YARN-84. Use Builder to build RPC server. (Brandon Li via szetszwo)
|
||||||
|
|
||||||
|
YARN-1046. Disable mem monitoring by default in MiniYARNCluster. (Karthik
|
||||||
|
Kambatla via Sandy Ryza)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
YARN-512. Log aggregation root directory check is more expensive than it
|
YARN-512. Log aggregation root directory check is more expensive than it
|
||||||
|
|
|
@ -711,6 +711,14 @@ public class YarnConfiguration extends Configuration {
|
||||||
*/
|
*/
|
||||||
public static boolean DEFAULT_YARN_MINICLUSTER_FIXED_PORTS = false;
|
public static boolean DEFAULT_YARN_MINICLUSTER_FIXED_PORTS = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether users are explicitly trying to control resource monitoring
|
||||||
|
* configuration for the MiniYARNCluster. Disabled by default.
|
||||||
|
*/
|
||||||
|
public static final String YARN_MINICLUSTER_CONTROL_RESOURCE_MONITORING =
|
||||||
|
YARN_PREFIX + "minicluster.control-resource-monitoring";
|
||||||
|
public static final boolean
|
||||||
|
DEFAULT_YARN_MINICLUSTER_CONTROL_RESOURCE_MONITORING = false;
|
||||||
|
|
||||||
/** The log directory for the containers */
|
/** The log directory for the containers */
|
||||||
public static final String YARN_APP_CONTAINER_LOG_DIR =
|
public static final String YARN_APP_CONTAINER_LOG_DIR =
|
||||||
|
|
|
@ -304,6 +304,16 @@ public class MiniYARNCluster extends CompositeService {
|
||||||
MiniYARNCluster.getHostname() + ":0");
|
MiniYARNCluster.getHostname() + ":0");
|
||||||
getConfig().set(YarnConfiguration.NM_WEBAPP_ADDRESS,
|
getConfig().set(YarnConfiguration.NM_WEBAPP_ADDRESS,
|
||||||
MiniYARNCluster.getHostname() + ":0");
|
MiniYARNCluster.getHostname() + ":0");
|
||||||
|
|
||||||
|
// Disable resource checks by default
|
||||||
|
if (!getConfig().getBoolean(
|
||||||
|
YarnConfiguration.YARN_MINICLUSTER_CONTROL_RESOURCE_MONITORING,
|
||||||
|
YarnConfiguration.
|
||||||
|
DEFAULT_YARN_MINICLUSTER_CONTROL_RESOURCE_MONITORING)) {
|
||||||
|
getConfig().setBoolean(YarnConfiguration.NM_PMEM_CHECK_ENABLED, false);
|
||||||
|
getConfig().setBoolean(YarnConfiguration.NM_VMEM_CHECK_ENABLED, false);
|
||||||
|
}
|
||||||
|
|
||||||
LOG.info("Starting NM: " + index);
|
LOG.info("Starting NM: " + index);
|
||||||
nodeManagers[index].init(getConfig());
|
nodeManagers[index].init(getConfig());
|
||||||
new Thread() {
|
new Thread() {
|
||||||
|
|
Loading…
Reference in New Issue