HBASE-16937 Replace SnapshotType protobuf conversion when we can directly use the pojo object

This commit is contained in:
Matteo Bertozzi 2016-11-04 13:18:34 -07:00
parent 00ea7aeafe
commit 7e05d0f161
4 changed files with 31 additions and 45 deletions

View File

@ -18,25 +18,27 @@
*/ */
package org.apache.hadoop.hbase.snapshot; package org.apache.hadoop.hbase.snapshot;
import java.util.Arrays;
import java.util.Locale;
import org.apache.commons.cli.CommandLine; import org.apache.commons.cli.CommandLine;
import org.apache.hadoop.hbase.TableName; import org.apache.hadoop.hbase.TableName;
import org.apache.hadoop.hbase.client.Admin; import org.apache.hadoop.hbase.client.Admin;
import org.apache.hadoop.hbase.client.Connection; import org.apache.hadoop.hbase.client.Connection;
import org.apache.hadoop.hbase.client.ConnectionFactory; import org.apache.hadoop.hbase.client.ConnectionFactory;
import org.apache.hadoop.hbase.client.SnapshotDescription; import org.apache.hadoop.hbase.client.SnapshotDescription;
import org.apache.hadoop.hbase.client.SnapshotType;
import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil; import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
import org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos; import org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos;
import org.apache.hadoop.hbase.util.AbstractHBaseTool; import org.apache.hadoop.hbase.util.AbstractHBaseTool;
import java.util.Arrays;
/** /**
* This is a command line class that will snapshot a given table. * This is a command line class that will snapshot a given table.
*/ */
public class CreateSnapshot extends AbstractHBaseTool { public class CreateSnapshot extends AbstractHBaseTool {
private SnapshotType snapshotType = SnapshotType.FLUSH;
private TableName tableName = null; private TableName tableName = null;
private String snapshotName = null; private String snapshotName = null;
private String snapshotType = null;
public static void main(String[] args) { public static void main(String[] args) {
new CreateSnapshot().doStaticMain(args); new CreateSnapshot().doStaticMain(args);
@ -48,15 +50,18 @@ public class CreateSnapshot extends AbstractHBaseTool {
this.addRequiredOptWithArg("n", "name", "The name of the created snapshot"); this.addRequiredOptWithArg("n", "name", "The name of the created snapshot");
this.addOptWithArg("s", "snapshot_type", this.addOptWithArg("s", "snapshot_type",
"Snapshot Type. FLUSH is default. Posible values are " "Snapshot Type. FLUSH is default. Posible values are "
+ Arrays.toString(HBaseProtos.SnapshotDescription.Type.values())); + Arrays.toString(SnapshotType.values()));
} }
@Override @Override
protected void processOptions(CommandLine cmd) { protected void processOptions(CommandLine cmd) {
this.tableName = TableName.valueOf(cmd.getOptionValue('t')); this.tableName = TableName.valueOf(cmd.getOptionValue('t'));
this.snapshotName = cmd.getOptionValue('n'); this.snapshotName = cmd.getOptionValue('n');
this.snapshotType = cmd.getOptionValue('s'); String snapshotTypeName = cmd.getOptionValue('s');
if (snapshotTypeName != null) {
snapshotTypeName = snapshotTypeName.toUpperCase(Locale.ROOT);
this.snapshotType = SnapshotType.valueOf(snapshotTypeName);
}
} }
@Override @Override
@ -66,13 +71,9 @@ public class CreateSnapshot extends AbstractHBaseTool {
try { try {
connection = ConnectionFactory.createConnection(getConf()); connection = ConnectionFactory.createConnection(getConf());
admin = connection.getAdmin(); admin = connection.getAdmin();
HBaseProtos.SnapshotDescription.Type type = HBaseProtos.SnapshotDescription.Type.FLUSH; admin.snapshot(new SnapshotDescription(snapshotName, tableName, snapshotType));
if (snapshotType != null) {
type = ProtobufUtil.createProtosSnapShotDescType(snapshotName);
}
admin.snapshot(new SnapshotDescription(snapshotName, tableName,
ProtobufUtil.createSnapshotType(type)));
} catch (Exception e) { } catch (Exception e) {
System.err.println("failed to take the snapshot: " + e.getMessage());
return -1; return -1;
} finally { } finally {
if (admin != null) { if (admin != null) {

View File

@ -292,15 +292,13 @@ public final class SnapshotTestingUtils {
* Take snapshot with maximum of numTries attempts, ignoring CorruptedSnapshotException * Take snapshot with maximum of numTries attempts, ignoring CorruptedSnapshotException
* except for the last CorruptedSnapshotException * except for the last CorruptedSnapshotException
*/ */
public static void snapshot(Admin admin, public static void snapshot(Admin admin, final String snapshotName, final TableName tableName,
final String snapshotName, final String tableName, final SnapshotType type, final int numTries) throws IOException {
HBaseProtos.SnapshotDescription.Type type, int numTries) throws IOException {
int tries = 0; int tries = 0;
CorruptedSnapshotException lastEx = null; CorruptedSnapshotException lastEx = null;
while (tries++ < numTries) { while (tries++ < numTries) {
try { try {
admin.snapshot(new SnapshotDescription(snapshotName, TableName.valueOf(tableName), admin.snapshot(snapshotName, tableName, type);
SnapshotType.valueOf(type.toString())));
return; return;
} catch (CorruptedSnapshotException cse) { } catch (CorruptedSnapshotException cse) {
LOG.warn("Got CorruptedSnapshotException", cse); LOG.warn("Got CorruptedSnapshotException", cse);

View File

@ -41,6 +41,7 @@ import org.apache.hadoop.hbase.HRegionInfo;
import org.apache.hadoop.hbase.TableName; import org.apache.hadoop.hbase.TableName;
import org.apache.hadoop.hbase.TableNotFoundException; import org.apache.hadoop.hbase.TableNotFoundException;
import org.apache.hadoop.hbase.client.Admin; import org.apache.hadoop.hbase.client.Admin;
import org.apache.hadoop.hbase.client.SnapshotType;
import org.apache.hadoop.hbase.client.Table; import org.apache.hadoop.hbase.client.Table;
import org.apache.hadoop.hbase.master.HMaster; import org.apache.hadoop.hbase.master.HMaster;
import org.apache.hadoop.hbase.master.snapshot.SnapshotManager; import org.apache.hadoop.hbase.master.snapshot.SnapshotManager;
@ -150,8 +151,7 @@ public class TestFlushSnapshotFromClient {
// take a snapshot of the enabled table // take a snapshot of the enabled table
String snapshotString = "offlineTableSnapshot"; String snapshotString = "offlineTableSnapshot";
byte[] snapshot = Bytes.toBytes(snapshotString); byte[] snapshot = Bytes.toBytes(snapshotString);
admin.snapshot(snapshotString, TABLE_NAME, admin.snapshot(snapshotString, TABLE_NAME, SnapshotType.FLUSH);
ProtobufUtil.createSnapshotType(HBaseProtos.SnapshotDescription.Type.FLUSH));
LOG.debug("Snapshot completed."); LOG.debug("Snapshot completed.");
// make sure we have the snapshot // make sure we have the snapshot
@ -186,8 +186,7 @@ public class TestFlushSnapshotFromClient {
// take a snapshot of the enabled table // take a snapshot of the enabled table
String snapshotString = "skipFlushTableSnapshot"; String snapshotString = "skipFlushTableSnapshot";
byte[] snapshot = Bytes.toBytes(snapshotString); byte[] snapshot = Bytes.toBytes(snapshotString);
admin.snapshot(snapshotString, TABLE_NAME, admin.snapshot(snapshotString, TABLE_NAME, SnapshotType.SKIPFLUSH);
ProtobufUtil.createSnapshotType(HBaseProtos.SnapshotDescription.Type.SKIPFLUSH));
LOG.debug("Snapshot completed."); LOG.debug("Snapshot completed.");
// make sure we have the snapshot // make sure we have the snapshot
@ -266,8 +265,7 @@ public class TestFlushSnapshotFromClient {
// snapshot the non-existant table // snapshot the non-existant table
try { try {
admin.snapshot("fail", tableName, admin.snapshot("fail", tableName, SnapshotType.FLUSH);
ProtobufUtil.createSnapshotType(HBaseProtos.SnapshotDescription.Type.FLUSH));
fail("Snapshot succeeded even though there is not table."); fail("Snapshot succeeded even though there is not table.");
} catch (SnapshotCreationException e) { } catch (SnapshotCreationException e) {
LOG.info("Correctly failed to snapshot a non-existant table:" + e.getMessage()); LOG.info("Correctly failed to snapshot a non-existant table:" + e.getMessage());
@ -282,8 +280,7 @@ public class TestFlushSnapshotFromClient {
// take the snapshot async // take the snapshot async
admin.takeSnapshotAsync( admin.takeSnapshotAsync(
new SnapshotDescription("asyncSnapshot", TABLE_NAME, new SnapshotDescription("asyncSnapshot", TABLE_NAME, SnapshotType.FLUSH));
ProtobufUtil.createSnapshotType(HBaseProtos.SnapshotDescription.Type.FLUSH)));
// constantly loop, looking for the snapshot to complete // constantly loop, looking for the snapshot to complete
HMaster master = UTIL.getMiniHBaseCluster().getMaster(); HMaster master = UTIL.getMiniHBaseCluster().getMaster();
@ -305,8 +302,7 @@ public class TestFlushSnapshotFromClient {
// Take a snapshot // Take a snapshot
String snapshotBeforeMergeName = "snapshotBeforeMerge"; String snapshotBeforeMergeName = "snapshotBeforeMerge";
admin.snapshot(snapshotBeforeMergeName, TABLE_NAME, admin.snapshot(snapshotBeforeMergeName, TABLE_NAME, SnapshotType.FLUSH);
ProtobufUtil.createSnapshotType(HBaseProtos.SnapshotDescription.Type.FLUSH));
// Clone the table // Clone the table
TableName cloneBeforeMergeName = TableName.valueOf("cloneBeforeMerge"); TableName cloneBeforeMergeName = TableName.valueOf("cloneBeforeMerge");
@ -374,8 +370,7 @@ public class TestFlushSnapshotFromClient {
// Take a snapshot // Take a snapshot
String snapshotName = "snapshotAfterMerge"; String snapshotName = "snapshotAfterMerge";
SnapshotTestingUtils.snapshot(admin, snapshotName, TABLE_NAME.getNameAsString(), SnapshotTestingUtils.snapshot(admin, snapshotName, TABLE_NAME, SnapshotType.FLUSH, 3);
HBaseProtos.SnapshotDescription.Type.FLUSH, 3);
// Clone the table // Clone the table
TableName cloneName = TableName.valueOf("cloneMerge"); TableName cloneName = TableName.valueOf("cloneMerge");
@ -453,14 +448,10 @@ public class TestFlushSnapshotFromClient {
// build descriptions // build descriptions
SnapshotDescription[] descs = new SnapshotDescription[ssNum]; SnapshotDescription[] descs = new SnapshotDescription[ssNum];
for (int i = 0; i < ssNum; i++) { for (int i = 0; i < ssNum; i++) {
HBaseProtos.SnapshotDescription.Builder builder =
HBaseProtos.SnapshotDescription.newBuilder();
if(i % 2 ==0) { if(i % 2 ==0) {
descs[i] = new SnapshotDescription("ss" + i, TABLE_NAME, descs[i] = new SnapshotDescription("ss" + i, TABLE_NAME, SnapshotType.FLUSH);
ProtobufUtil.createSnapshotType(HBaseProtos.SnapshotDescription.Type.FLUSH));
} else { } else {
descs[i] = new SnapshotDescription("ss" + i, TABLE2_NAME, descs[i] = new SnapshotDescription("ss" + i, TABLE2_NAME, SnapshotType.FLUSH);
ProtobufUtil.createSnapshotType(HBaseProtos.SnapshotDescription.Type.FLUSH));
} }
} }

View File

@ -26,10 +26,9 @@ import org.apache.hadoop.hbase.HBaseTestingUtility;
import org.apache.hadoop.hbase.HConstants; import org.apache.hadoop.hbase.HConstants;
import org.apache.hadoop.hbase.TableName; import org.apache.hadoop.hbase.TableName;
import org.apache.hadoop.hbase.client.Admin; import org.apache.hadoop.hbase.client.Admin;
import org.apache.hadoop.hbase.client.SnapshotType;
import org.apache.hadoop.hbase.client.Table; import org.apache.hadoop.hbase.client.Table;
import org.apache.hadoop.hbase.master.snapshot.SnapshotManager; import org.apache.hadoop.hbase.master.snapshot.SnapshotManager;
import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
import org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.SnapshotDescription;
import org.apache.hadoop.hbase.regionserver.snapshot.RegionServerSnapshotManager; import org.apache.hadoop.hbase.regionserver.snapshot.RegionServerSnapshotManager;
import org.apache.hadoop.hbase.testclassification.LargeTests; import org.apache.hadoop.hbase.testclassification.LargeTests;
import org.apache.hadoop.hbase.testclassification.RegionServerTests; import org.apache.hadoop.hbase.testclassification.RegionServerTests;
@ -115,8 +114,7 @@ public class TestRestoreFlushSnapshotFromClient {
logFSTree(); logFSTree();
// take a snapshot // take a snapshot
admin.snapshot(Bytes.toString(snapshotName0), tableName, admin.snapshot(Bytes.toString(snapshotName0), tableName, SnapshotType.FLUSH);
ProtobufUtil.createSnapshotType(SnapshotDescription.Type.FLUSH));
LOG.info("=== after snapshot with 500 rows"); LOG.info("=== after snapshot with 500 rows");
logFSTree(); logFSTree();
@ -128,8 +126,7 @@ public class TestRestoreFlushSnapshotFromClient {
logFSTree(); logFSTree();
// take a snapshot of the updated table // take a snapshot of the updated table
admin.snapshot(Bytes.toString(snapshotName1), tableName, admin.snapshot(Bytes.toString(snapshotName1), tableName, SnapshotType.FLUSH);
ProtobufUtil.createSnapshotType(SnapshotDescription.Type.FLUSH));
LOG.info("=== after snapshot with 1000 rows"); LOG.info("=== after snapshot with 1000 rows");
logFSTree(); logFSTree();
table.close(); table.close();
@ -194,8 +191,7 @@ public class TestRestoreFlushSnapshotFromClient {
TableName clonedTableName = TableName.valueOf("clonedtb-" + System.currentTimeMillis()); TableName clonedTableName = TableName.valueOf("clonedtb-" + System.currentTimeMillis());
admin.cloneSnapshot(snapshotName0, clonedTableName); admin.cloneSnapshot(snapshotName0, clonedTableName);
verifyRowCount(UTIL, clonedTableName, snapshot0Rows); verifyRowCount(UTIL, clonedTableName, snapshot0Rows);
admin.snapshot(Bytes.toString(snapshotName2), clonedTableName, admin.snapshot(Bytes.toString(snapshotName2), clonedTableName, SnapshotType.FLUSH);
ProtobufUtil.createSnapshotType(SnapshotDescription.Type.FLUSH));
UTIL.deleteTable(clonedTableName); UTIL.deleteTable(clonedTableName);
admin.cloneSnapshot(snapshotName2, clonedTableName); admin.cloneSnapshot(snapshotName2, clonedTableName);