From bcc3626301fef4e61ca1840921d95d6194641025 Mon Sep 17 00:00:00 2001 From: eclark Date: Mon, 10 Jun 2013 23:42:51 +0000 Subject: [PATCH] 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 --- .../src/main/java/org/apache/hadoop/hbase/HConstants.java | 2 +- hbase-common/src/main/resources/hbase-default.xml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java index e18d9da64a1..a6179d2c070 100644 --- a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java +++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java @@ -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"; diff --git a/hbase-common/src/main/resources/hbase-default.xml b/hbase-common/src/main/resources/hbase-default.xml index 3383fd90113..eceea279c00 100644 --- a/hbase-common/src/main/resources/hbase-default.xml +++ b/hbase-common/src/main/resources/hbase-default.xml @@ -463,10 +463,10 @@ possible configurations would overwhelm and obscure the important. hbase.client.retries.number - 20 + 30 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.