Repository: hbase Updated Branches: refs/heads/0.98 54b698c89 -> 0e32f563a refs/heads/branch-1 e14296109 -> a28f048fb refs/heads/master b384c06d3 -> c6d07f881
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/c6d07f88 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/c6d07f88 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/c6d07f88 Branch: refs/heads/master Commit: c6d07f881ff8a6fa706030495d29057ffdb4efb6 Parents: b384c06 Author: Andrew Purtell <[email protected]> Authored: Fri Aug 1 10:31:27 2014 -0700 Committer: Andrew Purtell <[email protected]> Committed: Fri Aug 1 10:31:27 2014 -0700 ---------------------------------------------------------------------- bin/hbase | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/c6d07f88/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
