You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Tommy Stendahl (JIRA)" <ji...@apache.org> on 2016/02/09 13:43:18 UTC

[jira] [Created] (CASSANDRA-11139) New token allocator is broken

Tommy Stendahl created CASSANDRA-11139:
------------------------------------------

             Summary: New token allocator is broken
                 Key: CASSANDRA-11139
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-11139
             Project: Cassandra
          Issue Type: Bug
            Reporter: Tommy Stendahl


It looks like the logic in the if statment in {{TokenAllocation.getStrategy()}} is broken.
{code}
if (replicas >= racks)
{...}
else if (racks == 1)
{...}
else
    throw new ConfigurationException(String.format("Token allocation failed: the number of racks %d in datacenter %s is lower than its replication factor %d.", racks, dc, replicas));
{code}
I think the first if statment should be {{(replicas <= racks)}}, otherwise this will be true if we have fewer racks then replicas and I guess that should result in an exception.

Also the {{if}} and the {{else if}} blocks should change place, it should be
{code}
if (racks == 1)
{...}
else if (replicas <= racks)
{...}
else
{code}
If {{replicas==1}} and {{racks==1}} I think you want the {{StrategyAdapter}} from {{(racks==1)}}.



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