You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Vijay (JIRA)" <ji...@apache.org> on 2012/09/25 08:11:08 UTC

[jira] [Updated] (CASSANDRA-4713) -ve Token with M3P

     [ https://issues.apache.org/jira/browse/CASSANDRA-4713?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Vijay updated CASSANDRA-4713:
-----------------------------

    Attachment: 0001-CASSANDRA-4713.patch

Adding back the removed check, (hash < 0) ? -hash : hash)
                
> -ve Token with M3P
> ------------------
>
>                 Key: CASSANDRA-4713
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-4713
>             Project: Cassandra
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 1.2.0 beta 1
>            Reporter: Vijay
>            Assignee: Vijay
>             Fix For: 1.2.0
>
>         Attachments: 0001-CASSANDRA-4713.patch
>
>
> Looks like CASSANDRA-4621 has the following code
> {code}
> -        return new LongToken((hash < 0) ? -hash : hash);
> +        return new LongToken(normalize(hash));
>      }
> +    private long normalize(long v)
> +    {
> +        // We exclude the MINIMUM value; see getToken()
> +        return v == Long.MIN_VALUE ? Long.MAX_VALUE : v;
>      }
> {code}
> Causing the following error during bulk loading...
> SSTable first key DecoratedKey(38876769351598, 30393932373730) > last key DecoratedKey(-9223087809888494735, 30393936393438)

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira