Oh.my bad. Thanks mate, that worked.
On Apr 29, 2013 10:03 PM, wrote:
> For starters: If you are using the Murmur3 partitioner, which is the
> default in cassandra.yaml, then you need to calculate the tokens using:***
> *
>
> python -c 'print [str(((2**64 / 2) * i) - 2**63) for i in range(2)]'**
For starters: If you are using the Murmur3 partitioner, which is the default
in cassandra.yaml, then you need to calculate the tokens using:
python -c 'print [str(((2**64 / 2) * i) - 2**63) for i in range(2)]'
which gives the following values:
['-9223372036854775808', '0']
From: Rahul [mailto:r