HBASE-15850 Localize the configuration change in testCheckTableLocks to reduce flakiness of TestHBaseFsck test suite (Stephen Yuan Jiang)
This commit is contained in:
parent
ce43e33876
commit
0078522549
|
@ -2575,20 +2575,26 @@ public class TestHBaseFsck {
|
||||||
Threads.sleep(300); // wait some more to ensure writeLock.acquire() is called
|
Threads.sleep(300); // wait some more to ensure writeLock.acquire() is called
|
||||||
|
|
||||||
hbck = doFsck(conf, false);
|
hbck = doFsck(conf, false);
|
||||||
assertErrors(hbck, new ERROR_CODE[] {ERROR_CODE.EXPIRED_TABLE_LOCK}); // still one expired, one not-expired
|
// still one expired, one not-expired
|
||||||
|
assertErrors(hbck, new ERROR_CODE[] {ERROR_CODE.EXPIRED_TABLE_LOCK});
|
||||||
|
|
||||||
edge.incrementTime(conf.getLong(TableLockManager.TABLE_LOCK_EXPIRE_TIMEOUT,
|
edge.incrementTime(conf.getLong(TableLockManager.TABLE_LOCK_EXPIRE_TIMEOUT,
|
||||||
TableLockManager.DEFAULT_TABLE_LOCK_EXPIRE_TIMEOUT_MS)); // let table lock expire
|
TableLockManager.DEFAULT_TABLE_LOCK_EXPIRE_TIMEOUT_MS)); // let table lock expire
|
||||||
|
|
||||||
hbck = doFsck(conf, false);
|
hbck = doFsck(conf, false);
|
||||||
assertErrors(hbck, new ERROR_CODE[] {ERROR_CODE.EXPIRED_TABLE_LOCK, ERROR_CODE.EXPIRED_TABLE_LOCK}); // both are expired
|
// both are expired
|
||||||
|
assertErrors(
|
||||||
|
hbck,
|
||||||
|
new ERROR_CODE[] {ERROR_CODE.EXPIRED_TABLE_LOCK, ERROR_CODE.EXPIRED_TABLE_LOCK});
|
||||||
|
|
||||||
conf.setLong(TableLockManager.TABLE_LOCK_EXPIRE_TIMEOUT, 1); // reaping from ZKInterProcessWriteLock uses znode cTime,
|
Configuration localConf = new Configuration(conf);
|
||||||
// which is not injectable through EnvironmentEdge
|
// reaping from ZKInterProcessWriteLock uses znode cTime,
|
||||||
|
// which is not injectable through EnvironmentEdge
|
||||||
|
localConf.setLong(TableLockManager.TABLE_LOCK_EXPIRE_TIMEOUT, 1);
|
||||||
Threads.sleep(10);
|
Threads.sleep(10);
|
||||||
hbck = doFsck(conf, true); // now fix both cases
|
hbck = doFsck(localConf, true); // now fix both cases
|
||||||
|
|
||||||
hbck = doFsck(conf, false);
|
hbck = doFsck(localConf, false);
|
||||||
assertNoErrors(hbck);
|
assertNoErrors(hbck);
|
||||||
|
|
||||||
// ensure that locks are deleted
|
// ensure that locks are deleted
|
||||||
|
|
Loading…
Reference in New Issue