Merge branch 'cassandra-2.2' into cassandra-3.0

This commit is contained in:
Aleksey Yeschenko 2015-10-21 21:10:21 +01:00
commit bc5f167366
3 changed files with 4 additions and 4 deletions

View File

@ -127,8 +127,8 @@ Deprecation
Operations
----------
- Switching racks is no longer an allowed operation on a node which has
data. Instead, the node will need to be wiped and bootstrapped. If
moving from the SimpleSnitch, make sure the rack containing all current
data. Instead, the node will need to be decommissioned and rebootstrapped.
If moving from the SimpleSnitch, make sure the rack containing all current
nodes is named "rack1".

View File

@ -758,7 +758,7 @@ cross_node_timeout: false
# ARE PLACED.
#
# IF THE RACK A REPLICA IS PLACED IN CHANGES AFTER THE REPLICA HAS BEEN
# ADDED TO A RING, THE NODE MUST BE WIPED AND REBOOTSTRAPPED.
# ADDED TO A RING, THE NODE MUST BE DECOMMISSIONED AND REBOOTSTRAPPED.
#
# Out of the box, Cassandra provides
# - SimpleSnitch:

View File

@ -248,7 +248,7 @@ public class CassandraDaemon
if (!storedRack.equals(currentRack))
{
logger.error("Cannot start node if snitch's rack differs from previous rack. " +
"Please fix the snitch or wipe and rebootstrap this node.");
"Please fix the snitch or decommission and rebootstrap this node.");
System.exit(100);
}
}