HBASE-6860 [replication] HBASE-6550 is too aggressive, DDOSes .META.

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1388694 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jean-Daniel Cryans 2012-09-21 21:42:10 +00:00
parent f3db42c6a7
commit c7f43f57b4
1 changed files with 2 additions and 2 deletions

View File

@ -101,9 +101,9 @@ public class ReplicationSink {
*/
private void decorateConf() {
this.conf.setInt(HConstants.HBASE_CLIENT_RETRIES_NUMBER,
this.conf.getInt("replication.sink.client.retries.number", 1));
this.conf.getInt("replication.sink.client.retries.number", 4));
this.conf.setInt(HConstants.HBASE_CLIENT_OPERATION_TIMEOUT,
this.conf.getInt("replication.sink.client.ops.timeout", 20));
this.conf.getInt("replication.sink.client.ops.timeout", 10000));
}
/**