Author: jdcryans
Date: Wed Dec 30 23:47:15 2009
New Revision: 894742

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

Modified:
    hadoop/hbase/branches/0.20/CHANGES.txt
    hadoop/hbase/branches/0.20/bin/hirb.rb

Modified: hadoop/hbase/branches/0.20/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/hbase/branches/0.20/CHANGES.txt?rev=894742&r1=894741&r2=894742&view=diff
==============================================================================
--- hadoop/hbase/branches/0.20/CHANGES.txt (original)
+++ hadoop/hbase/branches/0.20/CHANGES.txt Wed Dec 30 23:47:15 2009
@@ -71,6 +71,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
 
 Release 0.20.2 - November 18th, 2009
   INCOMPATIBLE CHANGES

Modified: hadoop/hbase/branches/0.20/bin/hirb.rb
URL: 
http://svn.apache.org/viewvc/hadoop/hbase/branches/0.20/bin/hirb.rb?rev=894742&r1=894741&r2=894742&view=diff
==============================================================================
--- hadoop/hbase/branches/0.20/bin/hirb.rb (original)
+++ hadoop/hbase/branches/0.20/bin/hirb.rb Wed Dec 30 23:47:15 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()
[email protected]("hbase.client.retries.number", 5)
[email protected]("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


Reply via email to