YARN-3028. Better syntax for replaceLabelsOnNode in RMAdmin CLI. Contributed by Rohith Sharmaks
This commit is contained in:
parent
0a05ae1782
commit
fd93e5387b
@ -212,6 +212,9 @@ Release 2.7.0 - UNRELEASED
|
|||||||
YARN-2897. CrossOriginFilter needs more log statements (Mit Desai via
|
YARN-2897. CrossOriginFilter needs more log statements (Mit Desai via
|
||||||
jeagles)
|
jeagles)
|
||||||
|
|
||||||
|
YARN-3028. Better syntax for replaceLabelsOnNode in RMAdmin CLI
|
||||||
|
(Rohith Sharmaks via wangda)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
|
@ -100,7 +100,8 @@ public class RMAdminCLI extends HAAdmin {
|
|||||||
new UsageInfo("[label1,label2,label3] (label splitted by \",\")",
|
new UsageInfo("[label1,label2,label3] (label splitted by \",\")",
|
||||||
"remove from cluster node labels"))
|
"remove from cluster node labels"))
|
||||||
.put("-replaceLabelsOnNode",
|
.put("-replaceLabelsOnNode",
|
||||||
new UsageInfo("[node1:port,label1,label2 node2:port,label1,label2]",
|
new UsageInfo(
|
||||||
|
"[node1[:port]=label1,label2 node2[:port]=label1,label2]",
|
||||||
"replace labels on nodes"))
|
"replace labels on nodes"))
|
||||||
.put("-directlyAccessNodeLabelStore",
|
.put("-directlyAccessNodeLabelStore",
|
||||||
new UsageInfo("", "Directly access node label store, "
|
new UsageInfo("", "Directly access node label store, "
|
||||||
@ -199,7 +200,7 @@ private static void printHelp(String cmd, boolean isHAEnabled) {
|
|||||||
" [-getGroup [username]]" +
|
" [-getGroup [username]]" +
|
||||||
" [[-addToClusterNodeLabels [label1,label2,label3]]" +
|
" [[-addToClusterNodeLabels [label1,label2,label3]]" +
|
||||||
" [-removeFromClusterNodeLabels [label1,label2,label3]]" +
|
" [-removeFromClusterNodeLabels [label1,label2,label3]]" +
|
||||||
" [-replaceLabelsOnNode [node1:port,label1,label2 node2:port,label1]" +
|
" [-replaceLabelsOnNode [node1[:port]=label1,label2 node2[:port]=label1]" +
|
||||||
" [-directlyAccessNodeLabelStore]]");
|
" [-directlyAccessNodeLabelStore]]");
|
||||||
if (isHAEnabled) {
|
if (isHAEnabled) {
|
||||||
appendHAUsage(summary);
|
appendHAUsage(summary);
|
||||||
@ -398,8 +399,18 @@ private Map<NodeId, Set<String>> buildNodeLabelsMapFromStr(String args)
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
String[] splits = nodeToLabels.split(",");
|
// "," also supported for compatibility
|
||||||
|
String[] splits = nodeToLabels.split("=");
|
||||||
|
int index = 0;
|
||||||
|
if (splits.length != 2) {
|
||||||
|
splits = nodeToLabels.split(",");
|
||||||
|
index = 1;
|
||||||
|
}
|
||||||
|
|
||||||
String nodeIdStr = splits[0];
|
String nodeIdStr = splits[0];
|
||||||
|
if (index == 0) {
|
||||||
|
splits = splits[1].split(",");
|
||||||
|
}
|
||||||
|
|
||||||
if (nodeIdStr.trim().isEmpty()) {
|
if (nodeIdStr.trim().isEmpty()) {
|
||||||
throw new IOException("node name cannot be empty");
|
throw new IOException("node name cannot be empty");
|
||||||
@ -408,7 +419,7 @@ private Map<NodeId, Set<String>> buildNodeLabelsMapFromStr(String args)
|
|||||||
NodeId nodeId = ConverterUtils.toNodeIdWithDefaultPort(nodeIdStr);
|
NodeId nodeId = ConverterUtils.toNodeIdWithDefaultPort(nodeIdStr);
|
||||||
map.put(nodeId, new HashSet<String>());
|
map.put(nodeId, new HashSet<String>());
|
||||||
|
|
||||||
for (int i = 1; i < splits.length; i++) {
|
for (int i = index; i < splits.length; i++) {
|
||||||
if (!splits[i].trim().isEmpty()) {
|
if (!splits[i].trim().isEmpty()) {
|
||||||
map.get(nodeId).add(splits[i].trim());
|
map.get(nodeId).add(splits[i].trim());
|
||||||
}
|
}
|
||||||
|
@ -73,7 +73,6 @@ public class TestRMAdminCLI {
|
|||||||
@Before
|
@Before
|
||||||
public void configure() throws IOException, YarnException {
|
public void configure() throws IOException, YarnException {
|
||||||
remoteAdminServiceAccessed = false;
|
remoteAdminServiceAccessed = false;
|
||||||
dummyNodeLabelsManager = new DummyCommonNodeLabelsManager();
|
|
||||||
admin = mock(ResourceManagerAdministrationProtocol.class);
|
admin = mock(ResourceManagerAdministrationProtocol.class);
|
||||||
when(admin.addToClusterNodeLabels(any(AddToClusterNodeLabelsRequest.class)))
|
when(admin.addToClusterNodeLabels(any(AddToClusterNodeLabelsRequest.class)))
|
||||||
.thenAnswer(new Answer<AddToClusterNodeLabelsResponse>() {
|
.thenAnswer(new Answer<AddToClusterNodeLabelsResponse>() {
|
||||||
@ -105,6 +104,7 @@ protected HAServiceTarget resolveTarget(String rmId) {
|
|||||||
return haServiceTarget;
|
return haServiceTarget;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
initDummyNodeLabelsManager();
|
||||||
rmAdminCLI.localNodeLabelsManager = dummyNodeLabelsManager;
|
rmAdminCLI.localNodeLabelsManager = dummyNodeLabelsManager;
|
||||||
|
|
||||||
YarnConfiguration conf = new YarnConfiguration();
|
YarnConfiguration conf = new YarnConfiguration();
|
||||||
@ -124,6 +124,13 @@ protected HAServiceTarget resolveTarget(String rmId) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void initDummyNodeLabelsManager() {
|
||||||
|
Configuration conf = new YarnConfiguration();
|
||||||
|
conf.setBoolean(YarnConfiguration.NODE_LABELS_ENABLED, true);
|
||||||
|
dummyNodeLabelsManager = new DummyCommonNodeLabelsManager();
|
||||||
|
dummyNodeLabelsManager.init(conf);
|
||||||
|
}
|
||||||
|
|
||||||
@Test(timeout=500)
|
@Test(timeout=500)
|
||||||
public void testRefreshQueues() throws Exception {
|
public void testRefreshQueues() throws Exception {
|
||||||
String[] args = { "-refreshQueues" };
|
String[] args = { "-refreshQueues" };
|
||||||
@ -281,7 +288,7 @@ public void testHelp() throws Exception {
|
|||||||
"[-refreshAdminAcls] [-refreshServiceAcl] [-getGroup" +
|
"[-refreshAdminAcls] [-refreshServiceAcl] [-getGroup" +
|
||||||
" [username]] [[-addToClusterNodeLabels [label1,label2,label3]]" +
|
" [username]] [[-addToClusterNodeLabels [label1,label2,label3]]" +
|
||||||
" [-removeFromClusterNodeLabels [label1,label2,label3]] [-replaceLabelsOnNode " +
|
" [-removeFromClusterNodeLabels [label1,label2,label3]] [-replaceLabelsOnNode " +
|
||||||
"[node1:port,label1,label2 node2:port,label1] [-directlyAccessNodeLabelStore]] " +
|
"[node1[:port]=label1,label2 node2[:port]=label1] [-directlyAccessNodeLabelStore]] " +
|
||||||
"[-help [cmd]]"));
|
"[-help [cmd]]"));
|
||||||
assertTrue(dataOut
|
assertTrue(dataOut
|
||||||
.toString()
|
.toString()
|
||||||
@ -361,7 +368,7 @@ public void testHelp() throws Exception {
|
|||||||
"[-refreshAdminAcls] [-refreshServiceAcl] [-getGroup" +
|
"[-refreshAdminAcls] [-refreshServiceAcl] [-getGroup" +
|
||||||
" [username]] [[-addToClusterNodeLabels [label1,label2,label3]]" +
|
" [username]] [[-addToClusterNodeLabels [label1,label2,label3]]" +
|
||||||
" [-removeFromClusterNodeLabels [label1,label2,label3]] [-replaceLabelsOnNode " +
|
" [-removeFromClusterNodeLabels [label1,label2,label3]] [-replaceLabelsOnNode " +
|
||||||
"[node1:port,label1,label2 node2:port,label1] [-directlyAccessNodeLabelStore]] " +
|
"[node1[:port]=label1,label2 node2[:port]=label1] [-directlyAccessNodeLabelStore]] " +
|
||||||
"[-transitionToActive [--forceactive] <serviceId>] " +
|
"[-transitionToActive [--forceactive] <serviceId>] " +
|
||||||
"[-transitionToStandby <serviceId>] [-failover" +
|
"[-transitionToStandby <serviceId>] [-failover" +
|
||||||
" [--forcefence] [--forceactive] <serviceId> <serviceId>] " +
|
" [--forcefence] [--forceactive] <serviceId> <serviceId>] " +
|
||||||
@ -501,15 +508,21 @@ public void testRemoveFromClusterNodeLabels() throws Exception {
|
|||||||
@Test
|
@Test
|
||||||
public void testReplaceLabelsOnNode() throws Exception {
|
public void testReplaceLabelsOnNode() throws Exception {
|
||||||
// Successfully replace labels
|
// Successfully replace labels
|
||||||
dummyNodeLabelsManager.addToCluserNodeLabels(ImmutableSet.of("x", "Y"));
|
dummyNodeLabelsManager
|
||||||
|
.addToCluserNodeLabels(ImmutableSet.of("x", "y", "Y"));
|
||||||
String[] args =
|
String[] args =
|
||||||
{ "-replaceLabelsOnNode", "node1,x,Y node2,Y",
|
{ "-replaceLabelsOnNode",
|
||||||
|
"node1:8000,x,y node2:8000=y node3,x,Y node4=Y",
|
||||||
"-directlyAccessNodeLabelStore" };
|
"-directlyAccessNodeLabelStore" };
|
||||||
assertEquals(0, rmAdminCLI.run(args));
|
assertEquals(0, rmAdminCLI.run(args));
|
||||||
assertTrue(dummyNodeLabelsManager.getNodeLabels().containsKey(
|
assertTrue(dummyNodeLabelsManager.getNodeLabels().containsKey(
|
||||||
NodeId.newInstance("node1", 0)));
|
NodeId.newInstance("node1", 8000)));
|
||||||
assertTrue(dummyNodeLabelsManager.getNodeLabels().containsKey(
|
assertTrue(dummyNodeLabelsManager.getNodeLabels().containsKey(
|
||||||
NodeId.newInstance("node2", 0)));
|
NodeId.newInstance("node2", 8000)));
|
||||||
|
assertTrue(dummyNodeLabelsManager.getNodeLabels().containsKey(
|
||||||
|
NodeId.newInstance("node3", 0)));
|
||||||
|
assertTrue(dummyNodeLabelsManager.getNodeLabels().containsKey(
|
||||||
|
NodeId.newInstance("node4", 0)));
|
||||||
|
|
||||||
// no labels, should fail
|
// no labels, should fail
|
||||||
args = new String[] { "-replaceLabelsOnNode" };
|
args = new String[] { "-replaceLabelsOnNode" };
|
||||||
@ -517,8 +530,7 @@ public void testReplaceLabelsOnNode() throws Exception {
|
|||||||
|
|
||||||
// no labels, should fail
|
// no labels, should fail
|
||||||
args =
|
args =
|
||||||
new String[] { "-replaceLabelsOnNode",
|
new String[] { "-replaceLabelsOnNode", "-directlyAccessNodeLabelStore" };
|
||||||
"-directlyAccessNodeLabelStore" };
|
|
||||||
assertTrue(0 != rmAdminCLI.run(args));
|
assertTrue(0 != rmAdminCLI.run(args));
|
||||||
|
|
||||||
// no labels, should fail
|
// no labels, should fail
|
||||||
@ -529,20 +541,6 @@ public void testReplaceLabelsOnNode() throws Exception {
|
|||||||
assertTrue(0 != rmAdminCLI.run(args));
|
assertTrue(0 != rmAdminCLI.run(args));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testReplaceLabelsOnNodeWithPort() throws Exception {
|
|
||||||
// Successfully replace labels
|
|
||||||
dummyNodeLabelsManager.addToCluserNodeLabels(ImmutableSet.of("x", "y"));
|
|
||||||
String[] args =
|
|
||||||
{ "-replaceLabelsOnNode", "node1:8000,x,y node2:8000,y",
|
|
||||||
"-directlyAccessNodeLabelStore" };
|
|
||||||
assertEquals(0, rmAdminCLI.run(args));
|
|
||||||
assertTrue(dummyNodeLabelsManager.getNodeLabels().containsKey(
|
|
||||||
NodeId.newInstance("node1", 8000)));
|
|
||||||
assertTrue(dummyNodeLabelsManager.getNodeLabels().containsKey(
|
|
||||||
NodeId.newInstance("node2", 8000)));
|
|
||||||
}
|
|
||||||
|
|
||||||
private void testError(String[] args, String template,
|
private void testError(String[] args, String template,
|
||||||
ByteArrayOutputStream data, int resultCode) throws Exception {
|
ByteArrayOutputStream data, int resultCode) throws Exception {
|
||||||
int actualResultCode = rmAdminCLI.run(args);
|
int actualResultCode = rmAdminCLI.run(args);
|
||||||
|
@ -333,23 +333,32 @@ private void assertNodeLabelsDisabledErrorMessage(IOException e) {
|
|||||||
public void testNodeLabelsDisabled() throws IOException {
|
public void testNodeLabelsDisabled() throws IOException {
|
||||||
DummyCommonNodeLabelsManager mgr = new DummyCommonNodeLabelsManager();
|
DummyCommonNodeLabelsManager mgr = new DummyCommonNodeLabelsManager();
|
||||||
Configuration conf = new YarnConfiguration();
|
Configuration conf = new YarnConfiguration();
|
||||||
conf.setBoolean(YarnConfiguration.NODE_LABELS_ENABLED, true);
|
conf.setBoolean(YarnConfiguration.NODE_LABELS_ENABLED, false);
|
||||||
mgr.init(conf);
|
mgr.init(conf);
|
||||||
mgr.start();
|
mgr.start();
|
||||||
|
boolean caught = false;
|
||||||
|
|
||||||
// add labels
|
// add labels
|
||||||
try {
|
try {
|
||||||
mgr.addToCluserNodeLabels(ImmutableSet.of("x"));
|
mgr.addToCluserNodeLabels(ImmutableSet.of("x"));
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
assertNodeLabelsDisabledErrorMessage(e);
|
assertNodeLabelsDisabledErrorMessage(e);
|
||||||
|
caught = true;
|
||||||
}
|
}
|
||||||
|
// check exception caught
|
||||||
|
Assert.assertTrue(caught);
|
||||||
|
caught = false;
|
||||||
|
|
||||||
// remove labels
|
// remove labels
|
||||||
try {
|
try {
|
||||||
mgr.removeFromClusterNodeLabels(ImmutableSet.of("x"));
|
mgr.removeFromClusterNodeLabels(ImmutableSet.of("x"));
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
assertNodeLabelsDisabledErrorMessage(e);
|
assertNodeLabelsDisabledErrorMessage(e);
|
||||||
|
caught = true;
|
||||||
}
|
}
|
||||||
|
// check exception caught
|
||||||
|
Assert.assertTrue(caught);
|
||||||
|
caught = false;
|
||||||
|
|
||||||
// add labels to node
|
// add labels to node
|
||||||
try {
|
try {
|
||||||
@ -357,7 +366,11 @@ public void testNodeLabelsDisabled() throws IOException {
|
|||||||
CommonNodeLabelsManager.EMPTY_STRING_SET));
|
CommonNodeLabelsManager.EMPTY_STRING_SET));
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
assertNodeLabelsDisabledErrorMessage(e);
|
assertNodeLabelsDisabledErrorMessage(e);
|
||||||
|
caught = true;
|
||||||
}
|
}
|
||||||
|
// check exception caught
|
||||||
|
Assert.assertTrue(caught);
|
||||||
|
caught = false;
|
||||||
|
|
||||||
// remove labels from node
|
// remove labels from node
|
||||||
try {
|
try {
|
||||||
@ -365,7 +378,11 @@ public void testNodeLabelsDisabled() throws IOException {
|
|||||||
CommonNodeLabelsManager.EMPTY_STRING_SET));
|
CommonNodeLabelsManager.EMPTY_STRING_SET));
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
assertNodeLabelsDisabledErrorMessage(e);
|
assertNodeLabelsDisabledErrorMessage(e);
|
||||||
|
caught = true;
|
||||||
}
|
}
|
||||||
|
// check exception caught
|
||||||
|
Assert.assertTrue(caught);
|
||||||
|
caught = false;
|
||||||
|
|
||||||
// replace labels on node
|
// replace labels on node
|
||||||
try {
|
try {
|
||||||
@ -373,7 +390,11 @@ public void testNodeLabelsDisabled() throws IOException {
|
|||||||
CommonNodeLabelsManager.EMPTY_STRING_SET));
|
CommonNodeLabelsManager.EMPTY_STRING_SET));
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
assertNodeLabelsDisabledErrorMessage(e);
|
assertNodeLabelsDisabledErrorMessage(e);
|
||||||
|
caught = true;
|
||||||
}
|
}
|
||||||
|
// check exception caught
|
||||||
|
Assert.assertTrue(caught);
|
||||||
|
caught = false;
|
||||||
|
|
||||||
mgr.close();
|
mgr.close();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user