HBASE-4126 Make timeoutmonitor timeout after 30 minutes instead of 3

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1149720 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-07-22 20:18:32 +00:00
parent 5db7f2f127
commit 25c43285bd
2 changed files with 2 additions and 1 deletions

View File

@ -423,6 +423,7 @@ Release 0.90.4 - Unreleased
HBASE-4101 Regionserver Deadlock (ramkrishna.s.vasudevan)
HBASE-4115 HBase shell assign and unassign unusable if region name
includes binary-encoded data (Ryan Brush)
HBASE-4126 Make timeoutmonitor timeout after 30 minutes instead of 3
IMPROVEMENT
HBASE-3882 hbase-config.sh needs to be updated so it can auto-detects the

View File

@ -163,7 +163,7 @@ public class AssignmentManager extends ZooKeeperListener {
this.timeoutMonitor = new TimeoutMonitor(
conf.getInt("hbase.master.assignment.timeoutmonitor.period", 10000),
master,
conf.getInt("hbase.master.assignment.timeoutmonitor.timeout", 180000));
conf.getInt("hbase.master.assignment.timeoutmonitor.timeout", 1800000));
Threads.setDaemonThreadRunning(timeoutMonitor,
master.getServerName() + ".timeoutMonitor");
this.zkTable = new ZKTable(this.master.getZooKeeper());