[ 
https://issues.apache.org/jira/browse/CASSANDRA-1555?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12974956#action_12974956
 ] 

Hudson commented on CASSANDRA-1555:
-----------------------------------

Integrated in Cassandra-0.7 #116 (See 
[https://hudson.apache.org/hudson/job/Cassandra-0.7/116/])
    add OpenBitSet to support larger bloom filters
patch by Ryan King, Stu Hood, and tjake for CASSANDRA-1555


> Considerations for larger bloom filters
> ---------------------------------------
>
>                 Key: CASSANDRA-1555
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-1555
>             Project: Cassandra
>          Issue Type: Improvement
>          Components: Core
>            Reporter: Stu Hood
>            Assignee: Ryan King
>             Fix For: 0.7.1
>
>         Attachments: 1555-v7.txt, 1555_v5.txt, 1555_v6.txt, 
> cassandra-1555.tgz, CASSANDRA-1555v2.patch, CASSANDRA-1555v3.patch.gz, 
> CASSANDRA-1555v4.patch.gz
>
>
> To (optimally) support SSTables larger than 143 million keys, we need to 
> support bloom filters larger than 2^31 bits, which java.util.BitSet can't 
> handle directly.
> A few options:
> * Switch to a BitSet class which supports 2^31 * 64 bits (Lucene's OpenBitSet)
> * Partition the java.util.BitSet behind our current BloomFilter
> ** Straightforward bit partitioning: bit N is in bitset N // 2^31
> ** Separate equally sized complete bloom filters for member ranges, which can 
> be used independently or OR'd together under memory pressure.
> All of these options require new approaches to serialization.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to