merge YARN-116 from trunk. Add the ability to change the RM include/exclude file without a restart. (Contributed by xieguiming and Harsh J)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1391913 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
76aa144c64
commit
060e4f256d
|
@ -23,6 +23,9 @@ Release 2.0.3-alpha - Unreleased
|
|||
YARN-53. Added the missing getGroups API to ResourceManager. (Bo Wang via
|
||||
vinodkv)
|
||||
|
||||
YARN-116. Add the ability to change the RM include/exclude file without
|
||||
a restart. (xieguiming and Harsh J via sseth)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
|
|
@ -189,15 +189,14 @@ public class AdminService extends AbstractService implements RMAdminProtocol {
|
|||
throws YarnRemoteException {
|
||||
UserGroupInformation user = checkAcls("refreshNodes");
|
||||
try {
|
||||
this.nodesListManager.refreshNodes();
|
||||
this.nodesListManager.refreshNodes(new YarnConfiguration());
|
||||
RMAuditLogger.logSuccess(user.getShortUserName(), "refreshNodes",
|
||||
"AdminService");
|
||||
return recordFactory.newRecordInstance(RefreshNodesResponse.class);
|
||||
} catch (IOException ioe) {
|
||||
LOG.info("Exception refreshing nodes ", ioe);
|
||||
RMAuditLogger.logFailure(user.getShortUserName(), "refreshNodes",
|
||||
adminAcl.toString(), "AdminService",
|
||||
"Exception refreshing nodes");
|
||||
adminAcl.toString(), "AdminService", "Exception refreshing nodes");
|
||||
throw RPCUtil.getRemoteException(ioe);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -103,8 +103,16 @@ public class NodesListManager extends AbstractService implements
|
|||
}
|
||||
}
|
||||
|
||||
public void refreshNodes() throws IOException {
|
||||
public void refreshNodes(Configuration yarnConf) throws IOException {
|
||||
synchronized (hostsReader) {
|
||||
if (null == yarnConf) {
|
||||
yarnConf = new YarnConfiguration();
|
||||
}
|
||||
hostsReader.updateFileNames(yarnConf.get(
|
||||
YarnConfiguration.RM_NODES_INCLUDE_FILE_PATH,
|
||||
YarnConfiguration.DEFAULT_RM_NODES_INCLUDE_FILE_PATH), yarnConf.get(
|
||||
YarnConfiguration.RM_NODES_EXCLUDE_FILE_PATH,
|
||||
YarnConfiguration.DEFAULT_RM_NODES_EXCLUDE_FILE_PATH));
|
||||
hostsReader.refresh();
|
||||
printConfiguredHosts();
|
||||
}
|
||||
|
|
|
@ -54,7 +54,7 @@ public class TestResourceTrackerService {
|
|||
private MockRM rm;
|
||||
|
||||
/**
|
||||
* decommissioning using a include hosts file
|
||||
* Decommissioning using a pre-configured include hosts file
|
||||
*/
|
||||
@Test
|
||||
public void testDecommissionWithIncludeHosts() throws Exception {
|
||||
|
@ -86,7 +86,7 @@ public class TestResourceTrackerService {
|
|||
String ip = NetUtils.normalizeHostName("localhost");
|
||||
writeToHostsFile("host1", ip);
|
||||
|
||||
rm.getNodesListManager().refreshNodes();
|
||||
rm.getNodesListManager().refreshNodes(conf);
|
||||
|
||||
nodeHeartbeat = nm1.nodeHeartbeat(true);
|
||||
Assert.assertTrue(NodeAction.NORMAL.equals(nodeHeartbeat.getNodeAction()));
|
||||
|
@ -106,7 +106,7 @@ public class TestResourceTrackerService {
|
|||
}
|
||||
|
||||
/**
|
||||
* decommissioning using a exclude hosts file
|
||||
* Decommissioning using a pre-configured exclude hosts file
|
||||
*/
|
||||
@Test
|
||||
public void testDecommissionWithExcludeHosts() throws Exception {
|
||||
|
@ -133,7 +133,7 @@ public class TestResourceTrackerService {
|
|||
String ip = NetUtils.normalizeHostName("localhost");
|
||||
writeToHostsFile("host2", ip);
|
||||
|
||||
rm.getNodesListManager().refreshNodes();
|
||||
rm.getNodesListManager().refreshNodes(conf);
|
||||
|
||||
nodeHeartbeat = nm1.nodeHeartbeat(true);
|
||||
Assert.assertTrue(NodeAction.NORMAL.equals(nodeHeartbeat.getNodeAction()));
|
||||
|
@ -147,7 +147,81 @@ public class TestResourceTrackerService {
|
|||
NodeAction.SHUTDOWN.equals(nodeHeartbeat.getNodeAction()));
|
||||
checkDecommissionedNMCount(rm, ++metricCount);
|
||||
}
|
||||
|
||||
/**
|
||||
* Decommissioning using a post-configured include hosts file
|
||||
*/
|
||||
@Test
|
||||
public void testAddNewIncludePathToConfiguration() throws Exception {
|
||||
Configuration conf = new Configuration();
|
||||
rm = new MockRM(conf);
|
||||
rm.start();
|
||||
MockNM nm1 = rm.registerNode("host1:1234", 5120);
|
||||
MockNM nm2 = rm.registerNode("host2:5678", 10240);
|
||||
ClusterMetrics metrics = ClusterMetrics.getMetrics();
|
||||
assert(metrics != null);
|
||||
int initialMetricCount = metrics.getNumDecommisionedNMs();
|
||||
HeartbeatResponse nodeHeartbeat = nm1.nodeHeartbeat(true);
|
||||
Assert.assertEquals(
|
||||
NodeAction.NORMAL,
|
||||
nodeHeartbeat.getNodeAction());
|
||||
nodeHeartbeat = nm2.nodeHeartbeat(true);
|
||||
Assert.assertEquals(
|
||||
NodeAction.NORMAL,
|
||||
nodeHeartbeat.getNodeAction());
|
||||
writeToHostsFile("host1");
|
||||
conf.set(YarnConfiguration.RM_NODES_INCLUDE_FILE_PATH, hostFile
|
||||
.getAbsolutePath());
|
||||
rm.getNodesListManager().refreshNodes(conf);
|
||||
nodeHeartbeat = nm1.nodeHeartbeat(true);
|
||||
Assert.assertEquals(
|
||||
"Node should not have been decomissioned.",
|
||||
NodeAction.NORMAL,
|
||||
nodeHeartbeat.getNodeAction());
|
||||
nodeHeartbeat = nm2.nodeHeartbeat(true);
|
||||
Assert.assertEquals("Node should have been decomissioned but is in state" +
|
||||
nodeHeartbeat.getNodeAction(),
|
||||
NodeAction.SHUTDOWN, nodeHeartbeat.getNodeAction());
|
||||
checkDecommissionedNMCount(rm, ++initialMetricCount);
|
||||
}
|
||||
|
||||
/**
|
||||
* Decommissioning using a post-configured exclude hosts file
|
||||
*/
|
||||
@Test
|
||||
public void testAddNewExcludePathToConfiguration() throws Exception {
|
||||
Configuration conf = new Configuration();
|
||||
rm = new MockRM(conf);
|
||||
rm.start();
|
||||
MockNM nm1 = rm.registerNode("host1:1234", 5120);
|
||||
MockNM nm2 = rm.registerNode("host2:5678", 10240);
|
||||
ClusterMetrics metrics = ClusterMetrics.getMetrics();
|
||||
assert(metrics != null);
|
||||
int initialMetricCount = metrics.getNumDecommisionedNMs();
|
||||
HeartbeatResponse nodeHeartbeat = nm1.nodeHeartbeat(true);
|
||||
Assert.assertEquals(
|
||||
NodeAction.NORMAL,
|
||||
nodeHeartbeat.getNodeAction());
|
||||
nodeHeartbeat = nm2.nodeHeartbeat(true);
|
||||
Assert.assertEquals(
|
||||
NodeAction.NORMAL,
|
||||
nodeHeartbeat.getNodeAction());
|
||||
writeToHostsFile("host2");
|
||||
conf.set(YarnConfiguration.RM_NODES_EXCLUDE_FILE_PATH, hostFile
|
||||
.getAbsolutePath());
|
||||
rm.getNodesListManager().refreshNodes(conf);
|
||||
nodeHeartbeat = nm1.nodeHeartbeat(true);
|
||||
Assert.assertEquals(
|
||||
"Node should not have been decomissioned.",
|
||||
NodeAction.NORMAL,
|
||||
nodeHeartbeat.getNodeAction());
|
||||
nodeHeartbeat = nm2.nodeHeartbeat(true);
|
||||
Assert.assertEquals("Node should have been decomissioned but is in state" +
|
||||
nodeHeartbeat.getNodeAction(),
|
||||
NodeAction.SHUTDOWN, nodeHeartbeat.getNodeAction());
|
||||
checkDecommissionedNMCount(rm, ++initialMetricCount);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testNodeRegistrationFailure() throws Exception {
|
||||
writeToHostsFile("host1");
|
||||
|
|
Loading…
Reference in New Issue