On Wed, Jul 16, 2014 at 12:21 PM, Diane Griffith <dfgriff...@gmail.com> wrote:
> So for specifically adding nodes to a cluster then? > > Under initializing a cluster (so bringing up a full cluster either in a > single data center or multiple data centers) it didn't talk of 2 minutes > between nodes. That is what I'm trying to figure out when the 2 minute > rule applies versus not. > It applies whenever one is bootstrapping a node. One is bootstrapping a node whenever one starts a node with auto_bootstrap set to "true" (the default) and with either one-or-more tokens in initial_token or num_tokens set. Ambiguity around implicit bootstrap behavior is why I recommend to always populate initial_token in cassandra.yaml in normal operation. The handy onliner below will help you if you are using vnodes. Use it after successfully bootstrapping a vnode using node for the first time. nodetool info -T | grep Token | awk '{print $3}' | paste -s -d, =Rob