You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ec...@apache.org on 2013/06/11 01:42:52 UTC

svn commit: r1491640 - in /hbase/trunk/hbase-common/src/main: java/org/apache/hadoop/hbase/HConstants.java resources/hbase-default.xml

Author: eclark
Date: Mon Jun 10 23:42:51 2013
New Revision: 1491640

URL: http://svn.apache.org/r1491640
Log:
HBASE-8723 HBase Intgration tests are failing because of new defaults.

Modified:
    hbase/trunk/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
    hbase/trunk/hbase-common/src/main/resources/hbase-default.xml

Modified: hbase/trunk/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
URL: http://svn.apache.org/viewvc/hbase/trunk/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java?rev=1491640&r1=1491639&r2=1491640&view=diff
==============================================================================
--- hbase/trunk/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java (original)
+++ hbase/trunk/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java Mon Jun 10 23:42:51 2013
@@ -495,7 +495,7 @@ public final class HConstants {
    * This is a retry backoff multiplier table similar to the BSD TCP syn
    * backoff table, a bit more aggressive than simple exponential backoff.
    */
-  public static int RETRY_BACKOFF[] = { 1, 1, 1, 2, 2, 4, 4, 8, 16, 32 };
+  public static int RETRY_BACKOFF[] = { 1, 1, 1, 2, 2, 4, 4, 8, 16, 32, 64, 128 };
 
   public static final String REGION_IMPL = "hbase.hregion.impl";
 

Modified: hbase/trunk/hbase-common/src/main/resources/hbase-default.xml
URL: http://svn.apache.org/viewvc/hbase/trunk/hbase-common/src/main/resources/hbase-default.xml?rev=1491640&r1=1491639&r2=1491640&view=diff
==============================================================================
--- hbase/trunk/hbase-common/src/main/resources/hbase-default.xml (original)
+++ hbase/trunk/hbase-common/src/main/resources/hbase-default.xml Mon Jun 10 23:42:51 2013
@@ -463,10 +463,10 @@ possible configurations would overwhelm 
   </property>
   <property>
     <name>hbase.client.retries.number</name>
-    <value>20</value>
+    <value>30</value>
     <description>Maximum retries.  Used as maximum for all retryable
     operations such as the getting of a cell's value, starting a row update, etc.
-    Default: 10.
+    Default: 30.
     </description>
   </property>
   <property>