You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by jd...@apache.org on 2009/12/31 00:47:41 UTC

svn commit: r894743 - in /hadoop/hbase/trunk: CHANGES.txt bin/hirb.rb

Author: jdcryans
Date: Wed Dec 30 23:47:41 2009
New Revision: 894743

URL: http://svn.apache.org/viewvc?rev=894743&view=rev
Log:
HBASE-2081  Set the retries higher in shell since client pause is lower

Modified:
    hadoop/hbase/trunk/CHANGES.txt
    hadoop/hbase/trunk/bin/hirb.rb

Modified: hadoop/hbase/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/hbase/trunk/CHANGES.txt?rev=894743&r1=894742&r2=894743&view=diff
==============================================================================
--- hadoop/hbase/trunk/CHANGES.txt (original)
+++ hadoop/hbase/trunk/CHANGES.txt Wed Dec 30 23:47:41 2009
@@ -267,6 +267,7 @@
    HBASE-2068  MetricsRate is missing "registry" parameter (Lars George via JD)
    HBASE-2025  0.20.2 accessed from older client throws 
                UndeclaredThrowableException; frustrates rolling upgrade
+   HBASE-2081  Set the retries higher in shell since client pause is lower
 
   NEW FEATURES
    HBASE-1901  "General" partitioner for "hbase-48" bulk (behind the api, write

Modified: hadoop/hbase/trunk/bin/hirb.rb
URL: http://svn.apache.org/viewvc/hadoop/hbase/trunk/bin/hirb.rb?rev=894743&r1=894742&r2=894743&view=diff
==============================================================================
--- hadoop/hbase/trunk/bin/hirb.rb (original)
+++ hadoop/hbase/trunk/bin/hirb.rb Wed Dec 30 23:47:41 2009
@@ -87,7 +87,7 @@
 # Setup the HBase module.  Create a configuration.
 # Turn off retries in hbase and ipc.  Human doesn't want to wait on N retries.
 @configuration = org.apache.hadoop.hbase.HBaseConfiguration.new()
-@configuration.setInt("hbase.client.retries.number", 5)
+@configuration.setInt("hbase.client.retries.number", 7)
 @configuration.setInt("ipc.client.connect.max.retries", 3)
 
 # Do lazy create of admin because if we are pointed at bad master, it will hang