HBASE-11649 Add shortcut commands to bin/hbase for test tools
Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/0e32f563 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/0e32f563 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/0e32f563 Branch: refs/heads/0.98 Commit: 0e32f563ada05063258339dea2331c0c0b877b31 Parents: 54b698c Author: Andrew Purtell <[email protected]> Authored: Fri Aug 1 10:31:27 2014 -0700 Committer: Andrew Purtell <[email protected]> Committed: Fri Aug 1 10:44:34 2014 -0700 ---------------------------------------------------------------------- bin/hbase | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/0e32f563/bin/hbase ---------------------------------------------------------------------- diff --git a/bin/hbase b/bin/hbase index c85a916..6855cb6 100755 --- a/bin/hbase +++ b/bin/hbase @@ -93,6 +93,8 @@ if [ $# = 0 ]; then echo " clean Run the HBase clean up script" echo " classpath Dump hbase CLASSPATH" echo " mapredcp Dump CLASSPATH entries required by mapreduce" + echo " pe Run PerformanceEvaluation" + echo " ltt Run LoadTestTool" echo " version Print the version" echo " CLASSNAME Run the class named CLASSNAME" exit 1 @@ -338,6 +340,12 @@ elif [ "$COMMAND" = "mapredcp" ] ; then elif [ "$COMMAND" = "classpath" ] ; then echo $CLASSPATH exit 0 +elif [ "$COMMAND" = "pe" ] ; then + CLASS='org.apache.hadoop.hbase.PerformanceEvaluation' + HBASE_OPTS="$HBASE_OPTS $HBASE_PE_OPTS" +elif [ "$COMMAND" = "ltt" ] ; then + CLASS='org.apache.hadoop.hbase.util.LoadTestTool' + HBASE_OPTS="$HBASE_OPTS $HBASE_LTT_OPTS" elif [ "$COMMAND" = "version" ] ; then CLASS='org.apache.hadoop.hbase.util.VersionInfo' else
