浏览代码

HADOOP-2468 TestRegionServerExit failed in Hadoop-Nightly #338

git-svn-id: https://svn.apache.org/repos/asf/lucene/hadoop/trunk@605675 13f79535-47bb-0310-9956-ffa450edef68
Jim Kellerman 17 年之前
父节点
当前提交
cf60a60853

+ 1 - 0
src/contrib/hbase/CHANGES.txt

@@ -88,6 +88,7 @@ Trunk (unreleased changes)
    HADOOP-2455 Error in Help-string of CREATE command (Edward Yoon via Stack)
    HADOOP-2465 When split parent regions are cleaned up, not all the columns are
                deleted
+   HADOOP-2468 TestRegionServerExit failed in Hadoop-Nightly #338
    
   IMPROVEMENTS
    HADOOP-2401 Add convenience put method that takes writable

+ 4 - 3
src/contrib/hbase/src/test/org/apache/hadoop/hbase/TestRegionServerExit.java

@@ -39,9 +39,10 @@ public class TestRegionServerExit extends HBaseClusterTestCase {
   /** constructor */
   public TestRegionServerExit() {
     super(2);
-    conf.setInt("ipc.client.timeout", 10000);          // reduce client timeout
-    conf.setInt("ipc.client.connect.max.retries", 5);  // and number of retries
-    conf.setInt("hbase.client.retries.number", 5);     // reduce HBase retries
+    conf.setInt("ipc.client.connect.max.retries", 5); // reduce ipc retries
+    conf.setInt("ipc.client.timeout", 10000);         // and ipc timeout 
+    conf.setInt("hbase.client.pause", 10000);         // increase client timeout
+    conf.setInt("hbase.client.retries.number", 10);   // increase HBase retries
   }
   
   /**