use of org.apache.hadoop.hive.metastore.api.AbortTxnsRequest in project hive by apache.
the class TestInitiator method cleanEmptyAbortedTxns.
@Test
public void cleanEmptyAbortedTxns() throws Exception {
// Test that we are cleaning aborted transactions with no components left in txn_components.
// Put one aborted transaction with an entry in txn_components to make sure we don't
// accidently clean it too.
Table t = newTable("default", "ceat", false);
long txnid = openTxn();
LockComponent comp = new LockComponent(LockType.SHARED_WRITE, LockLevel.TABLE, "default");
comp.setTablename("ceat");
comp.setOperationType(DataOperationType.UPDATE);
List<LockComponent> components = new ArrayList<LockComponent>(1);
components.add(comp);
LockRequest req = new LockRequest(components, "me", "localhost");
req.setTxnid(txnid);
LockResponse res = txnHandler.lock(req);
txnHandler.abortTxn(new AbortTxnRequest(txnid));
conf.setIntVar(HiveConf.ConfVars.HIVE_TXN_MAX_OPEN_BATCH, TxnStore.TIMED_OUT_TXN_ABORT_BATCH_SIZE + 50);
OpenTxnsResponse resp = txnHandler.openTxns(new OpenTxnRequest(TxnStore.TIMED_OUT_TXN_ABORT_BATCH_SIZE + 50, "user", "hostname"));
txnHandler.abortTxns(new AbortTxnsRequest(resp.getTxn_ids()));
GetOpenTxnsResponse openTxns = txnHandler.getOpenTxns();
Assert.assertEquals(TxnStore.TIMED_OUT_TXN_ABORT_BATCH_SIZE + 50 + 1, openTxns.getOpen_txnsSize());
startInitiator();
openTxns = txnHandler.getOpenTxns();
Assert.assertEquals(1, openTxns.getOpen_txnsSize());
}
use of org.apache.hadoop.hive.metastore.api.AbortTxnsRequest in project hive by apache.
the class TestReplicationScenariosAcidTables method testCompleteFailoverWithReverseBootstrap.
@Test
public void testCompleteFailoverWithReverseBootstrap() throws Throwable {
HiveConf primaryConf = primary.getConf();
TxnStore txnHandler = TxnUtils.getTxnStore(primary.getConf());
List<String> failoverConfigs = Arrays.asList("'" + HiveConf.ConfVars.HIVE_REPL_FAILOVER_START + "'='true'");
WarehouseInstance.Tuple dumpData = primary.run("use " + primaryDbName).run("create table t1 (id int) clustered by(id) into 3 buckets stored as orc " + "tblproperties (\"transactional\"=\"true\")").run("create table t2 (rank int) partitioned by (name string) tblproperties(\"transactional\"=\"true\", " + "\"transactional_properties\"=\"insert_only\")").dump(primaryDbName, failoverConfigs);
// This dump is not failover ready as target db can be used for replication only after first incremental load.
FileSystem fs = new Path(dumpData.dumpLocation).getFileSystem(conf);
Path dumpPath = new Path(dumpData.dumpLocation, ReplUtils.REPL_HIVE_BASE_DIR);
assertFalse(fs.exists(new Path(dumpPath, ReplAck.FAILOVER_READY_MARKER.toString())));
assertFalse(MetaStoreUtils.isDbBeingFailedOver(primary.getDatabase(primaryDbName)));
replica.load(replicatedDbName, primaryDbName, failoverConfigs).run("use " + replicatedDbName).run("show tables").verifyResults(new String[] { "t1", "t2" }).run("repl status " + replicatedDbName).verifyResult(dumpData.lastReplicationId);
Database db = replica.getDatabase(replicatedDbName);
assertTrue(MetaStoreUtils.isTargetOfReplication(db));
assertFalse(MetaStoreUtils.isDbBeingFailedOver(db));
primary.run("use " + primaryDbName).run("insert into t1 values(1)").run("insert into t2 partition(name='Bob') values(11)").run("insert into t2 partition(name='Carl') values(10)");
/**
*Open transactions can be of two types:
* Case 1) Txns that have not acquired HIVE LOCKS or they belong to different db: These txns would be captured in
* _failovermetadata file inside dump directory.
* Case 2) Txns that have acquired HIVE LOCKS and belong to db under replication: These txns would be aborted by hive
* as part of dump operation.
*/
// Open 3 txns for Database which is not under replication
int numTxnsForSecDb = 3;
List<Long> txnsForSecDb = openTxns(numTxnsForSecDb, txnHandler, primaryConf);
// Allocate write ids for both tables of secondary db for 3 txns
// t1=5 and t2=5
Map<String, Long> tablesInSecDb = new HashMap<>();
tablesInSecDb.put("t1", (long) numTxnsForSecDb);
tablesInSecDb.put("t2", (long) numTxnsForSecDb);
List<Long> lockIdsForSecDb = allocateWriteIdsForTablesAndAcquireLocks(primaryDbName + "_extra", tablesInSecDb, txnHandler, txnsForSecDb, primaryConf);
// Open 2 txns for Primary Db
int numTxnsForPrimaryDb = 2;
List<Long> txnsForPrimaryDb = openTxns(numTxnsForPrimaryDb, txnHandler, primaryConf);
// Allocate write ids for both tables of primary db for 2 txns
// t1=5 and t2=5
Map<String, Long> tablesInPrimaryDb = new HashMap<>();
tablesInPrimaryDb.put("t1", (long) numTxnsForPrimaryDb + 1);
tablesInPrimaryDb.put("t2", (long) numTxnsForPrimaryDb + 2);
List<Long> lockIdsForPrimaryDb = allocateWriteIdsForTablesAndAcquireLocks(primaryDbName, tablesInPrimaryDb, txnHandler, txnsForPrimaryDb, primaryConf);
// Open 1 txn with no hive locks acquired
List<Long> txnsWithNoLocks = openTxns(1, txnHandler, primaryConf);
dumpData = primary.dump(primaryDbName, failoverConfigs);
dumpPath = new Path(dumpData.dumpLocation, ReplUtils.REPL_HIVE_BASE_DIR);
assertTrue(fs.exists(new Path(dumpPath, DUMP_ACKNOWLEDGEMENT.toString())));
assertTrue(fs.exists(new Path(dumpPath, FailoverMetaData.FAILOVER_METADATA)));
assertTrue(fs.exists(new Path(dumpPath, ReplAck.FAILOVER_READY_MARKER.toString())));
assertTrue(MetaStoreUtils.isDbBeingFailedOverAtEndpoint(primary.getDatabase(primaryDbName), MetaStoreUtils.FailoverEndpoint.SOURCE));
FailoverMetaData failoverMD = new FailoverMetaData(dumpPath, conf);
List<Long> openTxns = failoverMD.getOpenTxns();
List<Long> txnsAborted = failoverMD.getAbortedTxns();
assertTrue(txnsAborted.size() == 2);
assertTrue(txnsAborted.containsAll(txnsForPrimaryDb));
assertTrue(openTxns.size() == 4);
assertTrue(openTxns.containsAll(txnsForSecDb));
assertTrue(openTxns.containsAll(txnsWithNoLocks));
assertTrue(failoverMD.getTxnsWithoutLock().equals(txnsWithNoLocks));
// TxnsForPrimaryDb and txnsWithNoLocks would have been aborted by dump operation.
verifyAllOpenTxnsAborted(txnsForPrimaryDb, primaryConf);
verifyAllOpenTxnsNotAborted(txnsForSecDb, primaryConf);
verifyAllOpenTxnsNotAborted(txnsWithNoLocks, primaryConf);
// Abort the txns
txnHandler.abortTxns(new AbortTxnsRequest(txnsForSecDb));
txnHandler.abortTxns(new AbortTxnsRequest(txnsWithNoLocks));
verifyAllOpenTxnsAborted(txnsForSecDb, primaryConf);
verifyAllOpenTxnsAborted(txnsWithNoLocks, primaryConf);
releaseLocks(txnHandler, lockIdsForSecDb);
replica.load(replicatedDbName, primaryDbName, failoverConfigs).run("use " + replicatedDbName).run("show tables").verifyResults(new String[] { "t1", "t2" }).run("repl status " + replicatedDbName).verifyResult(dumpData.lastReplicationId).run("select id from t1").verifyResults(new String[] { "1" }).run("select rank from t2 order by rank").verifyResults(new String[] { "10", "11" });
db = replica.getDatabase(replicatedDbName);
assertTrue(MetaStoreUtils.isTargetOfReplication(db));
assertTrue(MetaStoreUtils.isDbBeingFailedOverAtEndpoint(db, MetaStoreUtils.FailoverEndpoint.TARGET));
assertTrue(fs.exists(new Path(dumpPath, ReplAck.LOAD_ACKNOWLEDGEMENT.toString())));
Path dbRootDir = new Path(dumpData.dumpLocation).getParent();
long prevDumpDirModifTime = getLatestDumpDirModifTime(dbRootDir);
primary.run("REPL DUMP " + primaryDbName + " with ('" + HiveConf.ConfVars.HIVE_REPL_FAILOVER_START + "' = 'true')");
Assert.assertEquals(dumpData.dumpLocation, ReplUtils.getLatestDumpPath(dbRootDir, conf).toString());
Assert.assertEquals(prevDumpDirModifTime, getLatestDumpDirModifTime(dbRootDir));
dumpPath = new Path(dumpData.dumpLocation, ReplUtils.REPL_HIVE_BASE_DIR);
assertTrue(fs.exists(new Path(dumpPath, ReplAck.LOAD_ACKNOWLEDGEMENT.toString())));
assertTrue(MetaStoreUtils.isDbBeingFailedOverAtEndpoint(primary.getDatabase(primaryDbName), MetaStoreUtils.FailoverEndpoint.SOURCE));
primary.run("drop database if exists " + primaryDbName + " cascade");
assertTrue(primary.getDatabase(primaryDbName) == null);
assertFalse(ReplChangeManager.isSourceOfReplication(replica.getDatabase(replicatedDbName)));
WarehouseInstance.Tuple reverseDumpData = replica.run("create table t3 (id int)").run("insert into t2 partition(name='Bob') values(20)").run("insert into t3 values (2)").dump(replicatedDbName);
assertNotEquals(reverseDumpData.dumpLocation, dumpData.dumpLocation);
assertTrue(fs.exists(new Path(dumpPath, ReplAck.FAILOVER_READY_MARKER.toString())));
dumpPath = new Path(reverseDumpData.dumpLocation, ReplUtils.REPL_HIVE_BASE_DIR);
assertFalse(fs.exists(new Path(dumpPath, ReplAck.FAILOVER_READY_MARKER.toString())));
assertTrue(new DumpMetaData(dumpPath, conf).getDumpType() == DumpType.BOOTSTRAP);
assertTrue(fs.exists(new Path(dumpPath, DUMP_ACKNOWLEDGEMENT.toString())));
db = replica.getDatabase(replicatedDbName);
assertTrue(MetaStoreUtils.isDbBeingFailedOverAtEndpoint(db, MetaStoreUtils.FailoverEndpoint.TARGET));
assertFalse(MetaStoreUtils.isTargetOfReplication(db));
primary.load(primaryDbName, replicatedDbName).run("use " + primaryDbName).run("show tables").verifyResults(new String[] { "t1", "t2", "t3" }).run("repl status " + primaryDbName).verifyResult(reverseDumpData.lastReplicationId).run("select id from t1").verifyResults(new String[] { "1" }).run("select rank from t2 order by rank").verifyResults(new String[] { "10", "11", "20" }).run("select id from t3").verifyResults(new String[] { "2" });
Database primaryDb = primary.getDatabase(primaryDbName);
assertFalse(primaryDb == null);
assertTrue(ReplUtils.isFirstIncPending(primaryDb.getParameters()));
assertTrue(MetaStoreUtils.isTargetOfReplication(primaryDb));
assertFalse(MetaStoreUtils.isDbBeingFailedOver(primaryDb));
assertTrue(fs.exists(new Path(dumpPath, LOAD_ACKNOWLEDGEMENT.toString())));
assertFalse(ReplChangeManager.isSourceOfReplication(primaryDb));
assertTrue(ReplChangeManager.isSourceOfReplication(replica.getDatabase(replicatedDbName)));
reverseDumpData = replica.run("insert into t3 values (3)").run("insert into t2 partition(name='Bob') values(30)").dump(replicatedDbName);
assertFalse(MetaStoreUtils.isDbBeingFailedOver(replica.getDatabase(replicatedDbName)));
primary.load(primaryDbName, replicatedDbName).run("select rank from t2 order by rank").verifyResults(new String[] { "10", "11", "20", "30" }).run("select id from t3").verifyResults(new String[] { "2", "3" }).run("repl status " + primaryDbName).verifyResult(reverseDumpData.lastReplicationId);
assertFalse(ReplUtils.isFirstIncPending(primary.getDatabase(primaryDbName).getParameters()));
}
use of org.apache.hadoop.hive.metastore.api.AbortTxnsRequest in project hive by apache.
the class TestReplicationScenariosAcidTables method testAcidTablesBootstrapWithOpenTxnsWaitingForLock.
@Test
public void testAcidTablesBootstrapWithOpenTxnsWaitingForLock() throws Throwable {
int numTxns = 5;
HiveConf primaryConf = primary.getConf();
TxnStore txnHandler = TxnUtils.getTxnStore(primary.getConf());
// Open 5 txns
List<Long> txns = openTxns(numTxns, txnHandler, primaryConf);
// Create 2 tables, one partitioned and other not. Also, have both types of full ACID and MM tables.
primary.run("use " + primaryDbName).run("create table t1 (id int) clustered by(id) into 3 buckets stored as orc " + "tblproperties (\"transactional\"=\"true\")").run("insert into t1 values(1)").run("create table t2 (rank int) partitioned by (name string) tblproperties(\"transactional\"=\"true\", " + "\"transactional_properties\"=\"insert_only\")").run("insert into t2 partition(name='Bob') values(11)").run("insert into t2 partition(name='Carl') values(10)");
// Bootstrap dump with open txn timeout as 80s. Dump should fail as there will be open txns and
// lock is not acquired by them and we have set abort to false
List<String> withConfigs = Arrays.asList("'" + HiveConf.ConfVars.REPL_BOOTSTRAP_DUMP_OPEN_TXN_TIMEOUT + "'='80s'", "'" + HiveConf.ConfVars.REPL_BOOTSTRAP_DUMP_ABORT_WRITE_TXN_AFTER_TIMEOUT + "'='false'");
try {
primary.run("use " + primaryDbName).dump(primaryDbName, withConfigs);
fail();
} catch (Exception e) {
Assert.assertEquals(IllegalStateException.class, e.getClass());
Assert.assertEquals("REPL DUMP cannot proceed. Force abort all the open txns is disabled. " + "Enable hive.repl.bootstrap.dump.abort.write.txn.after.timeout to proceed.", e.getMessage());
}
withConfigs = Arrays.asList("'" + HiveConf.ConfVars.REPL_BOOTSTRAP_DUMP_OPEN_TXN_TIMEOUT + "'='1s'", "'" + HiveConf.ConfVars.REPL_BOOTSTRAP_DUMP_ABORT_WRITE_TXN_AFTER_TIMEOUT + "'='true'");
// Acquire locks
// Allocate write ids for both tables of secondary db for all txns
// t1=5 and t2=5
Map<String, Long> tablesInSecDb = new HashMap<>();
tablesInSecDb.put("t1", (long) numTxns);
tablesInSecDb.put("t2", (long) numTxns);
List<Long> lockIds = allocateWriteIdsForTablesAndAcquireLocks(primaryDbName + "_extra", tablesInSecDb, txnHandler, txns, primaryConf);
WarehouseInstance.Tuple bootstrapDump = primary.run("use " + primaryDbName).dump(primaryDbName, withConfigs);
// After bootstrap dump, all the opened txns should not be aborted as itr belongs to a diff db. Verify it.
verifyAllOpenTxnsNotAborted(txns, primaryConf);
Map<String, Long> tablesInPrimary = new HashMap<>();
tablesInPrimary.put("t1", 1L);
tablesInPrimary.put("t2", 2L);
verifyNextId(tablesInPrimary, primaryDbName, primaryConf);
// Bootstrap load which should not replicate the write ids on both tables as they are on different db.
HiveConf replicaConf = replica.getConf();
replica.load(replicatedDbName, primaryDbName).run("use " + replicatedDbName).run("show tables").verifyResults(new String[] { "t1", "t2" }).run("repl status " + replicatedDbName).verifyResult(bootstrapDump.lastReplicationId).run("select id from t1").verifyResults(new String[] { "1" }).run("select rank from t2 order by rank").verifyResults(new String[] { "10", "11" });
// Verify if HWM is properly set after REPL LOAD
verifyNextId(tablesInPrimary, replicatedDbName, replicaConf);
// Verify if none of the write ids are not replicated to the replicated DB as they belong to diff db
for (Map.Entry<String, Long> entry : tablesInPrimary.entrySet()) {
entry.setValue((long) 0);
}
verifyWriteIdsForTables(tablesInPrimary, replicaConf, replicatedDbName);
// Abort the txns
txnHandler.abortTxns(new AbortTxnsRequest(txns));
verifyAllOpenTxnsAborted(txns, primaryConf);
// Release the locks
releaseLocks(txnHandler, lockIds);
}
use of org.apache.hadoop.hive.metastore.api.AbortTxnsRequest in project hive by apache.
the class TestReplicationScenariosAcidTables method testAcidTablesBootstrapWithOpenTxnsAbortDisabled.
@Test
public void testAcidTablesBootstrapWithOpenTxnsAbortDisabled() throws Throwable {
int numTxns = 5;
HiveConf primaryConf = primary.getConf();
TxnStore txnHandler = TxnUtils.getTxnStore(primary.getConf());
// Open 5 txns
List<Long> txns = openTxns(numTxns, txnHandler, primaryConf);
// Create 2 tables, one partitioned and other not. Also, have both types of full ACID and MM tables.
primary.run("use " + primaryDbName).run("create table t1 (id int) clustered by(id) into 3 buckets stored as orc " + "tblproperties (\"transactional\"=\"true\")").run("insert into t1 values(1)").run("create table t2 (rank int) partitioned by (name string) tblproperties(\"transactional\"=\"true\", " + "\"transactional_properties\"=\"insert_only\")").run("insert into t2 partition(name='Bob') values(11)").run("insert into t2 partition(name='Carl') values(10)");
// Allocate write ids for both tables t1 and t2 for all txns
// t1=5+1(insert) and t2=5+2(insert)
Map<String, Long> tables = new HashMap<>();
tables.put("t1", numTxns + 1L);
tables.put("t2", numTxns + 2L);
List<Long> lockIds = allocateWriteIdsForTablesAndAcquireLocks(primaryDbName, tables, txnHandler, txns, primaryConf);
// Bootstrap dump with open txn timeout as 1s.
List<String> withConfigs = Arrays.asList("'" + HiveConf.ConfVars.REPL_BOOTSTRAP_DUMP_OPEN_TXN_TIMEOUT + "'='1s'", "'" + HiveConf.ConfVars.REPL_BOOTSTRAP_DUMP_ABORT_WRITE_TXN_AFTER_TIMEOUT + "'='false'");
try {
WarehouseInstance.Tuple bootstrapDump = primary.run("use " + primaryDbName).dump(primaryDbName, withConfigs);
} catch (Exception e) {
Assert.assertEquals("REPL DUMP cannot proceed. Force abort all the open txns is disabled. Enable " + "hive.repl.bootstrap.dump.abort.write.txn.after.timeout to proceed.", e.getMessage());
}
// After bootstrap dump, all the opened txns should not be aborted as it belongs to diff db. Verify it.
verifyAllOpenTxnsNotAborted(txns, primaryConf);
// Abort the txns
txnHandler.abortTxns(new AbortTxnsRequest(txns));
verifyAllOpenTxnsAborted(txns, primaryConf);
// Release the locks
releaseLocks(txnHandler, lockIds);
}
use of org.apache.hadoop.hive.metastore.api.AbortTxnsRequest in project hive by apache.
the class TestReplicationScenariosAcidTables method testAcidTablesBootstrapWithOpenTxnsDiffDb.
@Test
public void testAcidTablesBootstrapWithOpenTxnsDiffDb() throws Throwable {
int numTxns = 5;
HiveConf primaryConf = primary.getConf();
TxnStore txnHandler = TxnUtils.getTxnStore(primary.getConf());
// Open 5 txns
List<Long> txns = openTxns(numTxns, txnHandler, primaryConf);
// Create 2 tables, one partitioned and other not. Also, have both types of full ACID and MM tables.
primary.run("use " + primaryDbName).run("create table t1 (id int) clustered by(id) into 3 buckets stored as orc " + "tblproperties (\"transactional\"=\"true\")").run("insert into t1 values(1)").run("create table t2 (rank int) partitioned by (name string) tblproperties(\"transactional\"=\"true\", " + "\"transactional_properties\"=\"insert_only\")").run("insert into t2 partition(name='Bob') values(11)").run("insert into t2 partition(name='Carl') values(10)");
// Allocate write ids for both tables of secondary db for all txns
// t1=5 and t2=5
Map<String, Long> tablesInSecDb = new HashMap<>();
tablesInSecDb.put("t1", (long) numTxns);
tablesInSecDb.put("t2", (long) numTxns);
List<Long> lockIds = allocateWriteIdsForTablesAndAcquireLocks(primaryDbName + "_extra", tablesInSecDb, txnHandler, txns, primaryConf);
// Bootstrap dump with open txn timeout as 300s.
// Since transactions belong to different db it won't wait.
List<String> withConfigs = Arrays.asList("'" + HiveConf.ConfVars.REPL_BOOTSTRAP_DUMP_OPEN_TXN_TIMEOUT + "'='300s'");
long timeStarted = System.currentTimeMillis();
WarehouseInstance.Tuple bootstrapDump = null;
try {
bootstrapDump = primary.run("use " + primaryDbName).dump(primaryDbName, withConfigs);
} finally {
// Dump shouldn't wait for 300s. It should check in the 30 secs itself that those txns belong to different db
Assert.assertTrue(System.currentTimeMillis() - timeStarted < 300000);
}
// After bootstrap dump, all the opened txns should not be aborted as itr belongs to a diff db. Verify it.
verifyAllOpenTxnsNotAborted(txns, primaryConf);
Map<String, Long> tablesInPrimary = new HashMap<>();
tablesInPrimary.put("t1", 1L);
tablesInPrimary.put("t2", 2L);
verifyNextId(tablesInPrimary, primaryDbName, primaryConf);
// Bootstrap load which should not replicate the write ids on both tables as they are on different db.
HiveConf replicaConf = replica.getConf();
replica.load(replicatedDbName, primaryDbName).run("use " + replicatedDbName).run("show tables").verifyResults(new String[] { "t1", "t2" }).run("repl status " + replicatedDbName).verifyResult(bootstrapDump.lastReplicationId).run("select id from t1").verifyResults(new String[] { "1" }).run("select rank from t2 order by rank").verifyResults(new String[] { "10", "11" });
// Verify if HWM is properly set after REPL LOAD
verifyNextId(tablesInPrimary, replicatedDbName, replicaConf);
// Verify if none of the write ids are not replicated to the replicated DB as they belong to diff db
for (Map.Entry<String, Long> entry : tablesInPrimary.entrySet()) {
entry.setValue((long) 0);
}
verifyWriteIdsForTables(tablesInPrimary, replicaConf, replicatedDbName);
// Abort the txns
txnHandler.abortTxns(new AbortTxnsRequest(txns));
verifyAllOpenTxnsAborted(txns, primaryConf);
// Release the locks
releaseLocks(txnHandler, lockIds);
}
Aggregations