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:15 UTC

[3/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/c331685c
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/c331685c
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/c331685c

Branch: refs/heads/branch-1.2
Commit: c331685c95e1aba8c1aad538f4acdf4fe6e36352
Parents: 1ca1409
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:15:12 2015 -0700

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/c331685c/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