From ce43f204d22684c098a3f3cb7faec8d7a52a25e9 Mon Sep 17 00:00:00 2001 From: Elliott Clark Date: Fri, 5 Jul 2013 15:09:14 -0700 Subject: [PATCH] Remove setting client retries --- .../hadoop/hbase/IntegrationTestDataIngestWithChaosMonkey.java | 2 -- 1 file changed, 2 deletions(-) diff --git hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestDataIngestWithChaosMonkey.java hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestDataIngestWithChaosMonkey.java index 13493ec..7341c41 100644 --- hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestDataIngestWithChaosMonkey.java +++ hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestDataIngestWithChaosMonkey.java @@ -45,13 +45,11 @@ public class IntegrationTestDataIngestWithChaosMonkey extends IngestIntegrationT public void setUp() throws Exception { util= getTestingUtil(null); Configuration conf = util.getConfiguration(); - conf.setInt(HConstants.HBASE_CLIENT_RETRIES_NUMBER, 25); if (conf.getBoolean(HConstants.DISTRIBUTED_LOG_REPLAY_KEY, HConstants.DEFAULT_DISTRIBUTED_LOG_REPLAY_CONFIG)) { // when distributedLogReplay is enabled, we need to make sure rpc timeout & retires are // smaller enough in order for the replay can complete before ChaosMonkey kills another region // server - conf.setInt("hbase.regionserver.handler.count", 20); conf.setInt("hbase.log.replay.retries.number", 2); conf.setBoolean(HConstants.DISALLOW_WRITES_IN_RECOVERING, true); } -- 1.7.10.2 (Apple Git-33)