You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by jb...@apache.org on 2010/06/30 04:05:00 UTC

svn commit: r959164 - in /cassandra/trunk: NEWS.txt bin/cassandra.in.sh

Author: jbellis
Date: Wed Jun 30 02:05:00 2010
New Revision: 959164

URL: http://svn.apache.org/viewvc?rev=959164&view=rev
Log:
group related jvm options.  patch by jbellis

Modified:
    cassandra/trunk/NEWS.txt
    cassandra/trunk/bin/cassandra.in.sh

Modified: cassandra/trunk/NEWS.txt
URL: http://svn.apache.org/viewvc/cassandra/trunk/NEWS.txt?rev=959164&r1=959163&r2=959164&view=diff
==============================================================================
--- cassandra/trunk/NEWS.txt (original)
+++ cassandra/trunk/NEWS.txt Wed Jun 30 02:05:00 2010
@@ -17,6 +17,7 @@ Features
     - Hadoop OutputFormat support
     - Streaming data for repair or node movement no longer requires 
       anticompaction step first
+    - keyspace is per-connection in the thrift API instead of per-call
 
 Configuraton
 ------------
@@ -38,7 +39,6 @@ Configuraton
       schema updates on startup from the seed node you updated manually. 
     - EndPointSnitch was renamed to RackInferringSnitch.  A new SimpleSnitch
       has been added.
-    - auto_bootstrap now defaults to true
     - row_warning_threshold_in_mb replaced with in_memory_compaction_limit_in_mb
 
 JMX

Modified: cassandra/trunk/bin/cassandra.in.sh
URL: http://svn.apache.org/viewvc/cassandra/trunk/bin/cassandra.in.sh?rev=959164&r1=959163&r2=959164&view=diff
==============================================================================
--- cassandra/trunk/bin/cassandra.in.sh (original)
+++ cassandra/trunk/bin/cassandra.in.sh Wed Jun 30 02:05:00 2010
@@ -39,14 +39,17 @@ done
 # Arguments to pass to the JVM
 JVM_OPTS=" \
         -ea \
+        \
         -Xms256M \
         -Xmx1G \
+        \
         -XX:+UseParNewGC \
         -XX:+UseConcMarkSweepGC \
         -XX:+CMSParallelRemarkEnabled \
         -XX:SurvivorRatio=8 \
         -XX:MaxTenuringThreshold=1 \
         -XX:+HeapDumpOnOutOfMemoryError \
+        \
         -Dcom.sun.management.jmxremote.port=8080 \
         -Dcom.sun.management.jmxremote.ssl=false \
         -Dcom.sun.management.jmxremote.authenticate=false"