You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by mb...@apache.org on 2015/08/31 18:27:14 UTC

[2/6] hbase git commit: HBASE-14325 Add snapshotinfo command to hbase script.

HBASE-14325 Add snapshotinfo command to hbase script.

Signed-off-by: Matteo Bertozzi <ma...@cloudera.com>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/f30d3dc2
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/f30d3dc2
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/f30d3dc2

Branch: refs/heads/branch-1
Commit: f30d3dc20c03523b6cf452f70190f1a55dd74978
Parents: d3a7222
Author: Samir Ahmic <sa...@personal.com>
Authored: Thu Aug 27 15:38:13 2015 +0200
Committer: Matteo Bertozzi <ma...@cloudera.com>
Committed: Mon Aug 31 09:12:42 2015 -0700

----------------------------------------------------------------------
 bin/hbase | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/f30d3dc2/bin/hbase
----------------------------------------------------------------------
diff --git a/bin/hbase b/bin/hbase
index f0c0c75..7b0d97b 100755
--- a/bin/hbase
+++ b/bin/hbase
@@ -83,6 +83,7 @@ if [ $# = 0 ]; then
   echo "  shell           Run the HBase shell"
   echo "  hbck            Run the hbase 'fsck' tool"
   echo "  snapshot        Create a new snapshot of a table"
+  echo "  snapshotinfo    Tool for dumping snapshot information"
   echo "  wal             Write-ahead-log analyzer"
   echo "  hfile           Store file analyzer"
   echo "  zkcli           Run the ZooKeeper shell"
@@ -307,6 +308,8 @@ elif [ "$COMMAND" = "upgrade" ] ; then
   CLASS="org.apache.hadoop.hbase.migration.UpgradeTo96"
 elif [ "$COMMAND" = "snapshot" ] ; then
   CLASS="org.apache.hadoop.hbase.snapshot.CreateSnapshot"
+elif [ "$COMMAND" = "snapshotinfo" ] ; then
+  CLASS="org.apache.hadoop.hbase.snapshot.SnapshotInfo"
 elif [ "$COMMAND" = "master" ] ; then
   CLASS='org.apache.hadoop.hbase.master.HMaster'
   if [ "$1" != "stop" ] && [ "$1" != "clear" ] ; then