HBASE-7165 TestSplitLogManager.testUnassignedTimeout is flaky

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1409649 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
larsh 2012-11-15 05:29:02 +00:00
parent f38ee24ed0
commit 3989c72387
1 changed files with 3 additions and 3 deletions

View File

@ -425,7 +425,7 @@ public class TestSplitLogManager {
zkw.getRecoverableZooKeeper().create(tasknode1, slt.toByteArray(), Ids.OPEN_ACL_UNSAFE, zkw.getRecoverableZooKeeper().create(tasknode1, slt.toByteArray(), Ids.OPEN_ACL_UNSAFE,
CreateMode.PERSISTENT); CreateMode.PERSISTENT);
int to = 1000; int to = 4000;
conf.setInt("hbase.splitlog.manager.timeout", to); conf.setInt("hbase.splitlog.manager.timeout", to);
conf.setInt("hbase.splitlog.manager.unassigned.timeout", 2 * to); conf.setInt("hbase.splitlog.manager.unassigned.timeout", 2 * to);
conf.setInt("hbase.splitlog.manager.timeoutmonitor.period", 100); conf.setInt("hbase.splitlog.manager.timeoutmonitor.period", 100);
@ -451,10 +451,10 @@ public class TestSplitLogManager {
// since we have stopped heartbeating the owned node therefore it should // since we have stopped heartbeating the owned node therefore it should
// get resubmitted // get resubmitted
LOG.info("waiting for manager to resubmit the orphan task"); LOG.info("waiting for manager to resubmit the orphan task");
waitForCounter(tot_mgr_resubmit, 0, 1, to + 500); waitForCounter(tot_mgr_resubmit, 0, 1, to + to/2);
// now all the nodes are unassigned. manager should post another rescan // now all the nodes are unassigned. manager should post another rescan
waitForCounter(tot_mgr_resubmit_unassigned, 0, 1, 2 * to + 500); waitForCounter(tot_mgr_resubmit_unassigned, 0, 1, 2 * to + to/2);
} }
@Test @Test