You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Joaquin Casares (JIRA)" <ji...@apache.org> on 2014/11/19 07:37:33 UTC

[jira] [Created] (CASSANDRA-8338) Simplify Token Selection

Joaquin Casares created CASSANDRA-8338:
------------------------------------------

             Summary: Simplify Token Selection
                 Key: CASSANDRA-8338
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-8338
             Project: Cassandra
          Issue Type: Improvement
          Components: Config
            Reporter: Joaquin Casares
            Priority: Trivial


When creating provisioning scripts, especially when running tools like Chef, each node is launched individually. When not using vnodes your initial setup will always be unbalanced unless you handle token assignment within your scripts. 

I spoke to someone recently who was using this in production and his operations team wasn't too pleased that they had to use OpsCenter as an extra step for rebalancing. Instead, we should provide this functionality out of the box for new clusters.

Instead, could we have the following options below the initial_token section?

{CODE}
# datacenter_index: 0
# node_index: 0
# datacenter_size: 1
{CODE}

The above configuration options, when uncommented, would do the math of:

{CODE}
token = node_index * (range / datacenter_size) + (datacenter_index * 1000000) + start_of_range
{CODE}

This means that users don't have to repeatedly implement the initial_token selection code nor know the range and offsets of their partitioner.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)