From 7e35ba0922aed66c3693e7127cd3da8132e54d4f Mon Sep 17 00:00:00 2001 From: Elliott Clark Date: Thu, 6 Jun 2013 14:20:33 -0700 Subject: [PATCH] LOTS more retries. --- hbase-common/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 hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java index e18d9da..a6179d2 100644 --- hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java +++ 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 hbase-common/src/main/resources/hbase-default.xml hbase-common/src/main/resources/hbase-default.xml index 3383fd9..eceea27 100644 --- hbase-common/src/main/resources/hbase-default.xml +++ 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. -- 1.7.10.2 (Apple Git-33)