HBASE-2123 Remove 'master' command-line option from PE

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@899073 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2010-01-14 06:16:34 +00:00
parent ff761541cb
commit 56497da881
2 changed files with 3 additions and 4 deletions

View File

@ -158,6 +158,7 @@ Release 0.21.0 - Unreleased
HBASE-2119 Fix top-level NOTICES.txt file. Its stale.
HBASE-2120 [stargate] Unable to delete column families (Greg Lu via Andrew
Purtell)
HBASE-2123 Remove 'master' command-line option from PE
IMPROVEMENTS
HBASE-1760 Cleanup TODOs in HTable

View File

@ -921,13 +921,11 @@ public class PerformanceEvaluation implements HConstants {
System.err.println(message);
}
System.err.println("Usage: java " + this.getClass().getName() +
" [--master=HOST:PORT] \\");
System.err.println(" [--miniCluster] [--nomapred] [--rows=ROWS] [--table=NAME] [--compress=TYPE] \\");
" [--miniCluster] \\");
System.err.println(" [--nomapred] [--rows=ROWS] [--table=NAME] [--compress=TYPE] \\");
System.err.println(" <command> <nclients>");
System.err.println();
System.err.println("Options:");
System.err.println(" master Specify host and port of HBase " +
"cluster master. If not present,");
System.err.println(" address is read from configuration");
System.err.println(" miniCluster Run the test on an HBaseMiniCluster");
System.err.println(" nomapred Run multiple clients using threads " +