HDFS-10404. Fix formatting of CacheAdmin command usage help text (Yiqun Lin via cmccabe)

(cherry picked from commit 7cd5ae62f6)
This commit is contained in:
Colin Patrick Mccabe 2016-05-17 11:10:48 -07:00
parent 9c47862d87
commit 6ebb92c9c1
3 changed files with 7 additions and 5 deletions

View File

@ -443,7 +443,8 @@ public String getName() {
@Override @Override
public String getShortUsage() { public String getShortUsage() {
return "[" + getName() return "[" + getName()
+ " [-stats] [-path <path>] [-pool <pool>] [-id <id>]\n"; + " [-stats] [-path <path>] [-pool <pool>] [-id <id>]"
+ "]\n";
} }
@Override @Override
@ -554,7 +555,8 @@ public String getName() {
public String getShortUsage() { public String getShortUsage() {
return "[" + NAME + " <name> [-owner <owner>] " + return "[" + NAME + " <name> [-owner <owner>] " +
"[-group <group>] [-mode <mode>] [-limit <limit>] " + "[-group <group>] [-mode <mode>] [-limit <limit>] " +
"[-maxTtl <maxTtl>]\n"; "[-maxTtl <maxTtl>]" +
"]\n";
} }
@Override @Override

View File

@ -157,7 +157,7 @@ List cache directives.
#### addPool #### addPool
Usage: `hdfs cacheadmin -addPool <name> [-owner <owner>] [-group <group>] [-mode <mode>] [-limit <limit>] [-maxTtl <maxTtl`\> Usage: `hdfs cacheadmin -addPool <name> [-owner <owner>] [-group <group>] [-mode <mode>] [-limit <limit>] [-maxTtl <maxTtl>]`
Add a new cache pool. Add a new cache pool.

View File

@ -312,10 +312,10 @@ Usage:
hdfs cacheadmin [-addDirective -path <path> -pool <pool-name> [-force] [-replication <replication>] [-ttl <time-to-live>]] hdfs cacheadmin [-addDirective -path <path> -pool <pool-name> [-force] [-replication <replication>] [-ttl <time-to-live>]]
hdfs cacheadmin [-modifyDirective -id <id> [-path <path>] [-force] [-replication <replication>] [-pool <pool-name>] [-ttl <time-to-live>]] hdfs cacheadmin [-modifyDirective -id <id> [-path <path>] [-force] [-replication <replication>] [-pool <pool-name>] [-ttl <time-to-live>]]
hdfs cacheadmin [-listDirectives [-stats] [-path <path>] [-pool <pool>] [-id <id>] hdfs cacheadmin [-listDirectives [-stats] [-path <path>] [-pool <pool>] [-id <id>]]
hdfs cacheadmin [-removeDirective <id>] hdfs cacheadmin [-removeDirective <id>]
hdfs cacheadmin [-removeDirectives -path <path>] hdfs cacheadmin [-removeDirectives -path <path>]
hdfs cacheadmin [-addPool <name> [-owner <owner>] [-group <group>] [-mode <mode>] [-limit <limit>] [-maxTtl <maxTtl>] hdfs cacheadmin [-addPool <name> [-owner <owner>] [-group <group>] [-mode <mode>] [-limit <limit>] [-maxTtl <maxTtl>]]
hdfs cacheadmin [-modifyPool <name> [-owner <owner>] [-group <group>] [-mode <mode>] [-limit <limit>] [-maxTtl <maxTtl>]] hdfs cacheadmin [-modifyPool <name> [-owner <owner>] [-group <group>] [-mode <mode>] [-limit <limit>] [-maxTtl <maxTtl>]]
hdfs cacheadmin [-removePool <name>] hdfs cacheadmin [-removePool <name>]
hdfs cacheadmin [-listPools [-stats] [<name>]] hdfs cacheadmin [-listPools [-stats] [<name>]]