Index: src/contrib/hbase/conf/hbase-default.xml =================================================================== --- src/contrib/hbase/conf/hbase-default.xml (revision 574331) +++ src/contrib/hbase/conf/hbase-default.xml (working copy) @@ -50,7 +50,7 @@ hbase.client.pause - 30000 + 10000 General client pause value. Used mostly as value to wait before running a retry of a failed get, region lookup, etc. @@ -102,7 +102,7 @@ hbase.regionserver.msginterval - 10000 + 3000 Interval between messages from the RegionServer to HMaster in milliseconds. Default is 15. Set this value low if you want unit tests to be responsive. Index: src/contrib/hbase/src/java/org/apache/hadoop/hbase/HRegionServer.java =================================================================== --- src/contrib/hbase/src/java/org/apache/hadoop/hbase/HRegionServer.java (revision 574331) +++ src/contrib/hbase/src/java/org/apache/hadoop/hbase/HRegionServer.java (working copy) @@ -448,7 +448,7 @@ this.numRetries = conf.getInt("hbase.client.retries.number", 2); this.threadWakeFrequency = conf.getLong(THREAD_WAKE_FREQUENCY, 10 * 1000); this.msgInterval = conf.getLong("hbase.regionserver.msginterval", - 15 * 1000); + 3 * 1000); this.splitOrCompactCheckFrequency = conf.getLong("hbase.regionserver.thread.splitcompactcheckfrequency", 30 * 1000); Index: src/contrib/hbase/src/java/org/apache/hadoop/hbase/HTable.java =================================================================== --- src/contrib/hbase/src/java/org/apache/hadoop/hbase/HTable.java (revision 574331) +++ src/contrib/hbase/src/java/org/apache/hadoop/hbase/HTable.java (working copy) @@ -75,7 +75,7 @@ closed = true; this.connection = HConnectionManager.getConnection(conf); this.tableName = tableName; - this.pause = conf.getLong("hbase.client.pause", 30 * 1000); + this.pause = conf.getLong("hbase.client.pause", 10 * 1000); this.numRetries = conf.getInt("hbase.client.retries.number", 5); this.rand = new Random(); tableServers = connection.getTableServers(tableName);