HBASE-15508 Add command for exporting snapshot in hbase command script (Yufeng Jiang)

This commit is contained in:
Matteo Bertozzi 2016-03-23 10:38:13 -07:00
parent b697f53be3
commit 47eb79311f
3 changed files with 31 additions and 10 deletions

View File

@ -71,19 +71,22 @@ if [ -d "${HBASE_HOME}/target" ]; then
in_dev_env=true in_dev_env=true
fi fi
read -d '' options_string << EOF
Options:
--config DIR Configuration direction to use. Default: ./conf
--hosts HOSTS Override the list in 'regionservers' file
--auth-as-server Authenticate to ZooKeeper using servers configuration
EOF
# if no args specified, show usage # if no args specified, show usage
if [ $# = 0 ]; then if [ $# = 0 ]; then
echo "Usage: hbase [<options>] <command> [<args>]" echo "Usage: hbase [<options>] <command> [<args>]"
echo "Options:" echo "$options_string"
echo " --config DIR Configuration direction to use. Default: ./conf"
echo " --hosts HOSTS Override the list in 'regionservers' file"
echo " --auth-as-server Authenticate to ZooKeeper using servers configuration"
echo "" echo ""
echo "Commands:" echo "Commands:"
echo "Some commands take arguments. Pass no args or -h for usage." echo "Some commands take arguments. Pass no args or -h for usage."
echo " shell Run the HBase shell" echo " shell Run the HBase shell"
echo " hbck Run the hbase 'fsck' tool" echo " hbck Run the hbase 'fsck' tool"
echo " snapshot Create a new snapshot of a table" echo " snapshot Tool for managing snapshots"
echo " snapshotinfo Tool for dumping snapshot information" echo " snapshotinfo Tool for dumping snapshot information"
echo " wal Write-ahead-log analyzer" echo " wal Write-ahead-log analyzer"
echo " hfile Store file analyzer" echo " hfile Store file analyzer"
@ -317,8 +320,26 @@ elif [ "$COMMAND" = "zkcli" ] ; then
elif [ "$COMMAND" = "upgrade" ] ; then elif [ "$COMMAND" = "upgrade" ] ; then
CLASS="org.apache.hadoop.hbase.migration.UpgradeTo96" CLASS="org.apache.hadoop.hbase.migration.UpgradeTo96"
elif [ "$COMMAND" = "snapshot" ] ; then elif [ "$COMMAND" = "snapshot" ] ; then
CLASS="org.apache.hadoop.hbase.snapshot.CreateSnapshot" SUBCOMMAND=$1
shift
if [ "$SUBCOMMAND" = "create" ] ; then
CLASS="org.apache.hadoop.hbase.snapshot.CreateSnapshot"
elif [ "$SUBCOMMAND" = "info" ] ; then
CLASS="org.apache.hadoop.hbase.snapshot.SnapshotInfo"
elif [ "$SUBCOMMAND" = "export" ] ; then
CLASS="org.apache.hadoop.hbase.snapshot.ExportSnapshot"
else
echo "Usage: hbase [<options>] snapshot <subcommand> [<args>]"
echo "$options_string"
echo ""
echo "Subcommands:"
echo " create Create a new snapshot of a table"
echo " info Tool for dumping snapshot information"
echo " export Export an existing snapshot"
exit 1
fi
elif [ "$COMMAND" = "snapshotinfo" ] ; then elif [ "$COMMAND" = "snapshotinfo" ] ; then
>&2 echo "'hbase snapshotinfo' is deprecated and will not be available in HBase 2. Please use 'hbase snapshot info' instead."
CLASS="org.apache.hadoop.hbase.snapshot.SnapshotInfo" CLASS="org.apache.hadoop.hbase.snapshot.SnapshotInfo"
elif [ "$COMMAND" = "master" ] ; then elif [ "$COMMAND" = "master" ] ; then
CLASS='org.apache.hadoop.hbase.master.HMaster' CLASS='org.apache.hadoop.hbase.master.HMaster'

View File

@ -1048,11 +1048,11 @@ public class ExportSnapshot extends Configured implements Tool {
System.err.println(" -bandwidth Limit bandwidth to this value in MB/second."); System.err.println(" -bandwidth Limit bandwidth to this value in MB/second.");
System.err.println(); System.err.println();
System.err.println("Examples:"); System.err.println("Examples:");
System.err.println(" hbase " + getClass().getName() + " \\"); System.err.println(" hbase snapshot export \\");
System.err.println(" -snapshot MySnapshot -copy-to hdfs://srv2:8082/hbase \\"); System.err.println(" -snapshot MySnapshot -copy-to hdfs://srv2:8082/hbase \\");
System.err.println(" -chuser MyUser -chgroup MyGroup -chmod 700 -mappers 16"); System.err.println(" -chuser MyUser -chgroup MyGroup -chmod 700 -mappers 16");
System.err.println(); System.err.println();
System.err.println(" hbase " + getClass().getName() + " \\"); System.err.println(" hbase snapshot export \\");
System.err.println(" -snapshot MySnapshot -copy-from hdfs://srv2:8082/hbase \\"); System.err.println(" -snapshot MySnapshot -copy-from hdfs://srv2:8082/hbase \\");
System.err.println(" -copy-to hdfs://srv1:50070/hbase \\"); System.err.println(" -copy-to hdfs://srv1:50070/hbase \\");
System.exit(1); System.exit(1);

View File

@ -446,7 +446,7 @@ public final class SnapshotInfo extends Configured implements Tool {
} }
private void printUsageAndExit() { private void printUsageAndExit() {
System.err.printf("Usage: bin/hbase %s [options]%n", getClass().getName()); System.err.printf("Usage: bin/hbase snapshot info [options]%n");
System.err.println(" where [options] are:"); System.err.println(" where [options] are:");
System.err.println(" -h|-help Show this help and exit."); System.err.println(" -h|-help Show this help and exit.");
System.err.println(" -remote-dir Root directory that contains the snapshots."); System.err.println(" -remote-dir Root directory that contains the snapshots.");
@ -458,7 +458,7 @@ public final class SnapshotInfo extends Configured implements Tool {
System.err.println(" -schema Describe the snapshotted table."); System.err.println(" -schema Describe the snapshotted table.");
System.err.println(); System.err.println();
System.err.println("Examples:"); System.err.println("Examples:");
System.err.println(" hbase " + getClass() + " \\"); System.err.println(" hbase snapshot info \\");
System.err.println(" -snapshot MySnapshot -files"); System.err.println(" -snapshot MySnapshot -files");
System.exit(1); System.exit(1);
} }