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:
parent
ff761541cb
commit
56497da881
|
@ -158,6 +158,7 @@ Release 0.21.0 - Unreleased
|
||||||
HBASE-2119 Fix top-level NOTICES.txt file. Its stale.
|
HBASE-2119 Fix top-level NOTICES.txt file. Its stale.
|
||||||
HBASE-2120 [stargate] Unable to delete column families (Greg Lu via Andrew
|
HBASE-2120 [stargate] Unable to delete column families (Greg Lu via Andrew
|
||||||
Purtell)
|
Purtell)
|
||||||
|
HBASE-2123 Remove 'master' command-line option from PE
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HBASE-1760 Cleanup TODOs in HTable
|
HBASE-1760 Cleanup TODOs in HTable
|
||||||
|
|
|
@ -921,13 +921,11 @@ public class PerformanceEvaluation implements HConstants {
|
||||||
System.err.println(message);
|
System.err.println(message);
|
||||||
}
|
}
|
||||||
System.err.println("Usage: java " + this.getClass().getName() +
|
System.err.println("Usage: java " + this.getClass().getName() +
|
||||||
" [--master=HOST:PORT] \\");
|
" [--miniCluster] \\");
|
||||||
System.err.println(" [--miniCluster] [--nomapred] [--rows=ROWS] [--table=NAME] [--compress=TYPE] \\");
|
System.err.println(" [--nomapred] [--rows=ROWS] [--table=NAME] [--compress=TYPE] \\");
|
||||||
System.err.println(" <command> <nclients>");
|
System.err.println(" <command> <nclients>");
|
||||||
System.err.println();
|
System.err.println();
|
||||||
System.err.println("Options:");
|
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(" address is read from configuration");
|
||||||
System.err.println(" miniCluster Run the test on an HBaseMiniCluster");
|
System.err.println(" miniCluster Run the test on an HBaseMiniCluster");
|
||||||
System.err.println(" nomapred Run multiple clients using threads " +
|
System.err.println(" nomapred Run multiple clients using threads " +
|
||||||
|
|
Loading…
Reference in New Issue