HBASE-8723 HBase Intgration tests are failing because of new defaults.

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1491640 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
eclark 2013-06-10 23:42:51 +00:00
parent 53419dadca
commit bcc3626301
2 changed files with 3 additions and 3 deletions

View File

@ -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";

View File

@ -463,10 +463,10 @@ possible configurations would overwhelm and obscure the important.
</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>