You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whirr.apache.org by to...@apache.org on 2011/05/25 23:22:02 UTC

svn commit: r1127688 - in /incubator/whirr/branches/branch-0.5: CHANGES.txt services/cdh/src/main/resources/functions/configure_cdh_hbase.sh services/hbase/src/main/resources/functions/configure_hbase.sh

Author: tomwhite
Date: Wed May 25 21:22:01 2011
New Revision: 1127688

URL: http://svn.apache.org/viewvc?rev=1127688&view=rev
Log:
Merge -r 1127686:1127687 from trunk to branch-0.5. Fixes: WHIRR-314.

Modified:
    incubator/whirr/branches/branch-0.5/CHANGES.txt
    incubator/whirr/branches/branch-0.5/services/cdh/src/main/resources/functions/configure_cdh_hbase.sh
    incubator/whirr/branches/branch-0.5/services/hbase/src/main/resources/functions/configure_hbase.sh

Modified: incubator/whirr/branches/branch-0.5/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/whirr/branches/branch-0.5/CHANGES.txt?rev=1127688&r1=1127687&r2=1127688&view=diff
==============================================================================
--- incubator/whirr/branches/branch-0.5/CHANGES.txt (original)
+++ incubator/whirr/branches/branch-0.5/CHANGES.txt Wed May 25 21:22:01 2011
@@ -111,6 +111,9 @@ Release 0.5.0 - 2011-05-16
     WHIRR-298. Use all cluster spec properties for hash and 
     equality (tomwhite and asavu)
 
+    WHIRR-314. HBase integration test can fail due to Thrift server race.
+    (tomwhite)
+
 Release 0.4.0 - 2011-03-15
 
   NEW FEATURES

Modified: incubator/whirr/branches/branch-0.5/services/cdh/src/main/resources/functions/configure_cdh_hbase.sh
URL: http://svn.apache.org/viewvc/incubator/whirr/branches/branch-0.5/services/cdh/src/main/resources/functions/configure_cdh_hbase.sh?rev=1127688&r1=1127687&r2=1127688&view=diff
==============================================================================
--- incubator/whirr/branches/branch-0.5/services/cdh/src/main/resources/functions/configure_cdh_hbase.sh (original)
+++ incubator/whirr/branches/branch-0.5/services/cdh/src/main/resources/functions/configure_cdh_hbase.sh Wed May 25 21:22:01 2011
@@ -112,6 +112,10 @@ function configure_cdh_hbase() {
  <name>hbase.tmp.dir</name>
  <value>/data/tmp/hbase-\${user.name}</value>
 </property>
+<property>
+ <name>hbase.client.retries.number</name>
+ <value>100</value>
+</property>
 </configuration>
 EOF
 

Modified: incubator/whirr/branches/branch-0.5/services/hbase/src/main/resources/functions/configure_hbase.sh
URL: http://svn.apache.org/viewvc/incubator/whirr/branches/branch-0.5/services/hbase/src/main/resources/functions/configure_hbase.sh?rev=1127688&r1=1127687&r2=1127688&view=diff
==============================================================================
--- incubator/whirr/branches/branch-0.5/services/hbase/src/main/resources/functions/configure_hbase.sh (original)
+++ incubator/whirr/branches/branch-0.5/services/hbase/src/main/resources/functions/configure_hbase.sh Wed May 25 21:22:01 2011
@@ -126,6 +126,10 @@ function configure_hbase() {
  <name>hbase.tmp.dir</name>
  <value>$MOUNT/tmp/hbase-\${user.name}</value>
 </property>
+<property>
+ <name>hbase.client.retries.number</name>
+ <value>100</value>
+</property>
 </configuration>
 EOF