HDFS-16221. RBF: Add usage of refreshCallQueue for Router (#3421)
This commit is contained in:
parent
4d18a2eb99
commit
7f6553af75
|
@ -135,7 +135,7 @@ public class RouterAdmin extends Configured implements Tool {
|
|||
"-setStorageTypeQuota", "-clrQuota", "-clrStorageTypeQuota",
|
||||
"-safemode", "-nameservice", "-getDisabledNameservices",
|
||||
"-refresh", "-refreshRouterArgs",
|
||||
"-refreshSuperUserGroupsConfiguration"};
|
||||
"-refreshSuperUserGroupsConfiguration", "-refreshCallQueue"};
|
||||
StringBuilder usage = new StringBuilder();
|
||||
usage.append("Usage: hdfs dfsrouteradmin :\n");
|
||||
for (int i = 0; i < commands.length; i++) {
|
||||
|
@ -185,6 +185,8 @@ public class RouterAdmin extends Configured implements Tool {
|
|||
return "\t[-refreshRouterArgs <host:ipc_port> <key> [arg1..argn]]";
|
||||
} else if (cmd.equals("-refreshSuperUserGroupsConfiguration")) {
|
||||
return "\t[-refreshSuperUserGroupsConfiguration]";
|
||||
} else if (cmd.equals("-refreshCallQueue")) {
|
||||
return "\t[-refreshCallQueue]";
|
||||
}
|
||||
return getUsage(null);
|
||||
}
|
||||
|
@ -222,6 +224,10 @@ public class RouterAdmin extends Configured implements Tool {
|
|||
if (arg.length > 1) {
|
||||
throw new IllegalArgumentException("No arguments allowed");
|
||||
}
|
||||
} else if (arg[0].equals("-refreshCallQueue")) {
|
||||
if (arg.length > 1) {
|
||||
throw new IllegalArgumentException("No arguments allowed");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1744,9 +1744,19 @@ public class TestRouterAdminCLI {
|
|||
public void testRefreshCallQueue() throws Exception {
|
||||
|
||||
System.setOut(new PrintStream(out));
|
||||
System.setErr(new PrintStream(err));
|
||||
|
||||
String[] argv = new String[]{"-refreshCallQueue"};
|
||||
assertEquals(0, ToolRunner.run(admin, argv));
|
||||
assertTrue(out.toString().contains("Refresh call queue successfully"));
|
||||
|
||||
argv = new String[]{};
|
||||
assertEquals(-1, ToolRunner.run(admin, argv));
|
||||
assertTrue(out.toString().contains("-refreshCallQueue"));
|
||||
|
||||
argv = new String[]{"-refreshCallQueue", "redundant"};
|
||||
assertEquals(-1, ToolRunner.run(admin, argv));
|
||||
assertTrue(err.toString().contains("No arguments allowed"));
|
||||
}
|
||||
|
||||
private void addMountTable(String src, String nsId, String dst)
|
||||
|
|
|
@ -458,6 +458,7 @@ Usage:
|
|||
[-refresh]
|
||||
[-refreshRouterArgs <host:ipc_port> <key> [arg1..argn]]
|
||||
[-refreshSuperUserGroupsConfiguration]
|
||||
[-refreshCallQueue]
|
||||
|
||||
| COMMAND\_OPTION | Description |
|
||||
|:---- |:---- |
|
||||
|
@ -476,6 +477,7 @@ Usage:
|
|||
| `-refresh` | Update mount table cache of the connected router. |
|
||||
| `refreshRouterArgs` \<host:ipc\_port\> \<key\> [arg1..argn] | To trigger a runtime-refresh of the resource specified by \<key\> on \<host:ipc\_port\>. For example, to enable white list checking, we just need to send a refresh command other than restart the router server. |
|
||||
| `-refreshSuperUserGroupsConfiguration` | Refresh superuser proxy groups mappings on Router. |
|
||||
| `-refreshCallQueue` | Reload the call queue from config for Router. |
|
||||
|
||||
The commands for managing Router-based federation. See [Mount table management](../hadoop-hdfs-rbf/HDFSRouterFederation.html#Mount_table_management) for more info.
|
||||
|
||||
|
|
Loading…
Reference in New Issue