You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by ji...@apache.org on 2007/12/19 21:11:18 UTC

svn commit: r605675 - in /lucene/hadoop/trunk/src/contrib/hbase: CHANGES.txt src/test/org/apache/hadoop/hbase/TestRegionServerExit.java

Author: jimk
Date: Wed Dec 19 12:11:17 2007
New Revision: 605675

URL: http://svn.apache.org/viewvc?rev=605675&view=rev
Log:
HADOOP-2468 TestRegionServerExit failed in Hadoop-Nightly #338

Modified:
    lucene/hadoop/trunk/src/contrib/hbase/CHANGES.txt
    lucene/hadoop/trunk/src/contrib/hbase/src/test/org/apache/hadoop/hbase/TestRegionServerExit.java

Modified: lucene/hadoop/trunk/src/contrib/hbase/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/hadoop/trunk/src/contrib/hbase/CHANGES.txt?rev=605675&r1=605674&r2=605675&view=diff
==============================================================================
--- lucene/hadoop/trunk/src/contrib/hbase/CHANGES.txt (original)
+++ lucene/hadoop/trunk/src/contrib/hbase/CHANGES.txt Wed Dec 19 12:11:17 2007
@@ -88,6 +88,7 @@
    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

Modified: lucene/hadoop/trunk/src/contrib/hbase/src/test/org/apache/hadoop/hbase/TestRegionServerExit.java
URL: http://svn.apache.org/viewvc/lucene/hadoop/trunk/src/contrib/hbase/src/test/org/apache/hadoop/hbase/TestRegionServerExit.java?rev=605675&r1=605674&r2=605675&view=diff
==============================================================================
--- lucene/hadoop/trunk/src/contrib/hbase/src/test/org/apache/hadoop/hbase/TestRegionServerExit.java (original)
+++ lucene/hadoop/trunk/src/contrib/hbase/src/test/org/apache/hadoop/hbase/TestRegionServerExit.java Wed Dec 19 12:11:17 2007
@@ -39,9 +39,10 @@
   /** 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
   }
   
   /**