You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whirr.apache.org by as...@apache.org on 2012/03/12 15:52:27 UTC

svn commit: r1299694 - in /whirr/branches/branch-0.7: CHANGES.txt recipes/cassandra-ec2.properties services/cassandra/pom.xml services/cassandra/src/main/resources/functions/install_cassandra.sh

Author: asavu
Date: Mon Mar 12 14:52:27 2012
New Revision: 1299694

URL: http://svn.apache.org/viewvc?rev=1299694&view=rev
Log:
WHIRR-553. Upgrade Cassandra to 1.0.8 (Andrei Savu)

Modified:
    whirr/branches/branch-0.7/CHANGES.txt
    whirr/branches/branch-0.7/recipes/cassandra-ec2.properties
    whirr/branches/branch-0.7/services/cassandra/pom.xml
    whirr/branches/branch-0.7/services/cassandra/src/main/resources/functions/install_cassandra.sh

Modified: whirr/branches/branch-0.7/CHANGES.txt
URL: http://svn.apache.org/viewvc/whirr/branches/branch-0.7/CHANGES.txt?rev=1299694&r1=1299693&r2=1299694&view=diff
==============================================================================
--- whirr/branches/branch-0.7/CHANGES.txt (original)
+++ whirr/branches/branch-0.7/CHANGES.txt Mon Mar 12 14:52:27 2012
@@ -19,6 +19,8 @@ Release 0.7.2
 
     WHIRR-554. Upgrade elasticsearch to 0.19.0 (Andrei Savu)
 
+    WHIRR-553. Upgrade Cassandra to 1.0.8 (Andrei Savu)
+
   BUG FIXES
 
 Release 0.7.1 - 2012-02-23

Modified: whirr/branches/branch-0.7/recipes/cassandra-ec2.properties
URL: http://svn.apache.org/viewvc/whirr/branches/branch-0.7/recipes/cassandra-ec2.properties?rev=1299694&r1=1299693&r2=1299694&view=diff
==============================================================================
--- whirr/branches/branch-0.7/recipes/cassandra-ec2.properties (original)
+++ whirr/branches/branch-0.7/recipes/cassandra-ec2.properties Mon Mar 12 14:52:27 2012
@@ -38,5 +38,5 @@ whirr.credential=${env:AWS_SECRET_ACCESS
 # whirr.public-key-file=${whirr.private-key-file}.pub
 
 # Expert: specify the version of Cassandra to install.
-#whirr.cassandra.version.major=1.0.6
-#whirr.cassandra.tarball.url=http://www.apache.org/dist/cassandra/1.0.6/apache-cassandra-1.0.6-bin.tar.gz
+#whirr.cassandra.version.major=1.0.8
+#whirr.cassandra.tarball.url=http://www.apache.org/dist/cassandra/1.0.8/apache-cassandra-1.0.8-bin.tar.gz

Modified: whirr/branches/branch-0.7/services/cassandra/pom.xml
URL: http://svn.apache.org/viewvc/whirr/branches/branch-0.7/services/cassandra/pom.xml?rev=1299694&r1=1299693&r2=1299694&view=diff
==============================================================================
--- whirr/branches/branch-0.7/services/cassandra/pom.xml (original)
+++ whirr/branches/branch-0.7/services/cassandra/pom.xml Mon Mar 12 14:52:27 2012
@@ -65,7 +65,7 @@
     <dependency>
       <groupId>org.apache.cassandra</groupId>
       <artifactId>cassandra-all</artifactId>
-      <version>1.0.6</version>
+      <version>1.0.8</version>
     </dependency>
     <dependency>
       <groupId>org.apache.cassandra.deps</groupId>

Modified: whirr/branches/branch-0.7/services/cassandra/src/main/resources/functions/install_cassandra.sh
URL: http://svn.apache.org/viewvc/whirr/branches/branch-0.7/services/cassandra/src/main/resources/functions/install_cassandra.sh?rev=1299694&r1=1299693&r2=1299694&view=diff
==============================================================================
--- whirr/branches/branch-0.7/services/cassandra/src/main/resources/functions/install_cassandra.sh (original)
+++ whirr/branches/branch-0.7/services/cassandra/src/main/resources/functions/install_cassandra.sh Mon Mar 12 14:52:27 2012
@@ -17,7 +17,7 @@
 function install_cassandra() {
 
   C_MAJOR_VERSION=${1:-1.0}
-  C_TAR_URL=${2:-http://archive.apache.org/dist/cassandra/1.0.6/apache-cassandra-1.0.6-bin.tar.gz}
+  C_TAR_URL=${2:-http://apache.osuosl.org/cassandra/1.0.8/apache-cassandra-1.0.8-bin.tar.gz}
  
   c_tar_file=`basename $C_TAR_URL`
   c_tar_dir=`echo $c_tar_file | awk -F '-bin' '{print $1}'`