Author: jbellis
Date: Mon May 17 14:35:09 2010
New Revision: 945181

URL: http://svn.apache.org/viewvc?rev=945181&view=rev
Log:
auto_bootstrap now defaults to true.  patch by jbellis

Modified:
    cassandra/trunk/NEWS.txt
    cassandra/trunk/conf/cassandra.yaml

Modified: cassandra/trunk/NEWS.txt
URL: 
http://svn.apache.org/viewvc/cassandra/trunk/NEWS.txt?rev=945181&r1=945180&r2=945181&view=diff
==============================================================================
--- cassandra/trunk/NEWS.txt (original)
+++ cassandra/trunk/NEWS.txt Mon May 17 14:35:09 2010
@@ -31,6 +31,7 @@ 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
 
 Thrift API
 ----------

Modified: cassandra/trunk/conf/cassandra.yaml
URL: 
http://svn.apache.org/viewvc/cassandra/trunk/conf/cassandra.yaml?rev=945181&r1=945180&r2=945181&view=diff
==============================================================================
--- cassandra/trunk/conf/cassandra.yaml (original)
+++ cassandra/trunk/conf/cassandra.yaml Mon May 17 14:35:09 2010
@@ -5,9 +5,9 @@
 # name of the cluster
 cluster_name: 'Test Cluster'
 
-# Set to true to make new [non-seed] nodes automatically migrate the
-# right data to themselves.
-auto_bootstrap: false
+# Set to true to make new [non-seed] nodes automatically migrate data
+# to themselves from the pre-existing nodes in the cluster.
+auto_bootstrap: true
 
 # See http://wiki.apache.org/cassandra/HintedHandoff
 hinted_handoff_enabled: true


Reply via email to