HBASE-5119 Set the TimeoutMonitor's timeout back down
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1403500 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
28fffb91b7
commit
27f9a5cd7b
|
@ -186,9 +186,9 @@ public class AssignmentManager extends ZooKeeperListener {
|
|||
(new HashMap<String, HRegionInfo> ());
|
||||
Configuration conf = server.getConfiguration();
|
||||
this.timeoutMonitor = new TimeoutMonitor(
|
||||
conf.getInt("hbase.master.assignment.timeoutmonitor.period", 60000),
|
||||
conf.getInt("hbase.master.assignment.timeoutmonitor.period", 30000),
|
||||
server, serverManager,
|
||||
conf.getInt("hbase.master.assignment.timeoutmonitor.timeout", 1200000));
|
||||
conf.getInt("hbase.master.assignment.timeoutmonitor.timeout", 600000));
|
||||
this.timerUpdater = new TimerUpdater(conf.getInt(
|
||||
"hbase.master.assignment.timerupdater.period", 10000), server);
|
||||
Threads.setDaemonThreadRunning(timerUpdater.getThread(),
|
||||
|
|
Loading…
Reference in New Issue