-
Notifications
You must be signed in to change notification settings - Fork 10
feat: implement bloom filter #53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
2ad8733
checkpoint
notfilippo 99b90bb
checkpoint
notfilippo a7ca025
xxhash
notfilippo 0f679a9
match cpp hashing logic
notfilippo 00db03f
serde
notfilippo 90cced5
cleanup
notfilippo 432893d
cleanup
notfilippo fe5a033
docs
notfilippo d696ea7
comments cleanup
notfilippo 593ff6d
builder cleanup
notfilippo 4e35a23
trade 3 loc for 1 loc
notfilippo db98035
get back 1 loc
notfilippo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,221 @@ | ||
| // Licensed to the Apache Software Foundation (ASF) under one | ||
| // or more contributor license agreements. See the NOTICE file | ||
| // distributed with this work for additional information | ||
| // regarding copyright ownership. The ASF licenses this file | ||
| // to you under the Apache License, Version 2.0 (the | ||
| // "License"); you may not use this file except in compliance | ||
| // with the License. You may obtain a copy of the License at | ||
| // | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, | ||
| // software distributed under the License is distributed on an | ||
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| // KIND, either express or implied. See the License for the | ||
| // specific language governing permissions and limitations | ||
| // under the License. | ||
|
|
||
| use super::BloomFilter; | ||
| use crate::hash::DEFAULT_UPDATE_SEED; | ||
|
|
||
| const MIN_NUM_BITS: u64 = 64; | ||
| const MAX_NUM_BITS: u64 = (1u64 << 35) - 64; // ~32 GB - reasonable limit | ||
|
|
||
| /// Builder for creating [`BloomFilter`] instances. | ||
| /// | ||
| /// Provides two construction modes: | ||
| /// - [`with_accuracy()`](Self::with_accuracy): Specify target items and false positive rate | ||
| /// (recommended) | ||
| /// - [`with_size()`](Self::with_size): Specify exact bit count and hash functions (manual) | ||
| #[derive(Debug, Clone)] | ||
| pub struct BloomFilterBuilder { | ||
| num_bits: u64, | ||
| num_hashes: u16, | ||
| seed: u64, | ||
| } | ||
|
|
||
| impl BloomFilterBuilder { | ||
| /// Creates a builder with optimal parameters for a target accuracy. | ||
| /// | ||
| /// Automatically calculates the optimal number of bits and hash functions | ||
| /// to achieve the desired false positive probability for a given number of items. | ||
| /// | ||
| /// # Arguments | ||
| /// | ||
| /// - `max_items`: Maximum expected number of distinct items | ||
| /// - `fpp`: Target false positive probability (e.g., 0.01 for 1%) | ||
| /// | ||
| /// # Panics | ||
| /// | ||
| /// Panics if `max_items` is 0 or `fpp` is not in (0.0, 1.0). | ||
| /// | ||
| /// # Examples | ||
| /// | ||
| /// ``` | ||
| /// # use datasketches::bloom::BloomFilterBuilder; | ||
| /// // Optimal for 10,000 items with 1% FPP | ||
| /// let filter = BloomFilterBuilder::with_accuracy(10_000, 0.01) | ||
| /// .seed(42) | ||
| /// .build(); | ||
| /// ``` | ||
| pub fn with_accuracy(max_items: u64, fpp: f64) -> Self { | ||
| assert!(max_items > 0, "max_items must be greater than 0"); | ||
| assert!( | ||
| fpp > 0.0 && fpp < 1.0, | ||
| "fpp must be between 0.0 and 1.0 (exclusive)" | ||
| ); | ||
|
|
||
| let num_bits = Self::suggest_num_bits(max_items, fpp); | ||
| let num_hashes = Self::suggest_num_hashes_from_accuracy(max_items, num_bits); | ||
|
|
||
| BloomFilterBuilder { | ||
| num_bits, | ||
| num_hashes, | ||
| seed: DEFAULT_UPDATE_SEED, | ||
| } | ||
| } | ||
|
|
||
| /// Creates a builder with manual size specification. | ||
| /// | ||
| /// Use this when you want precise control over the filter size, | ||
| /// or when working with pre-calculated parameters. | ||
| /// | ||
| /// # Arguments | ||
| /// | ||
| /// - `num_bits`: Total number of bits in the filter | ||
| /// - `num_hashes`: Number of hash functions to use | ||
| /// | ||
| /// # Panics | ||
| /// | ||
| /// Panics if: | ||
| /// - `num_bits` < MIN_NUM_BITS (64) or `num_bits` > MAX_NUM_BITS (~32 GB) | ||
| /// - `num_hashes` < 1 or `num_hashes` > 100 | ||
| /// | ||
| /// # Examples | ||
| /// | ||
| /// ``` | ||
| /// # use datasketches::bloom::BloomFilterBuilder; | ||
| /// let filter = BloomFilterBuilder::with_size(10_000, 7).build(); | ||
| /// ``` | ||
| pub fn with_size(num_bits: u64, num_hashes: u16) -> Self { | ||
| assert!( | ||
| num_bits >= MIN_NUM_BITS, | ||
| "num_bits must be at least {}", | ||
| MIN_NUM_BITS | ||
| ); | ||
| assert!( | ||
| num_bits <= MAX_NUM_BITS, | ||
| "num_bits must not exceed {}", | ||
| MAX_NUM_BITS | ||
| ); | ||
| assert!(num_hashes >= 1, "num_hashes must be at least 1"); | ||
| assert!(num_hashes <= 100, "num_hashes must not exceed 100"); | ||
|
|
||
| BloomFilterBuilder { | ||
| num_bits, | ||
| num_hashes, | ||
| seed: DEFAULT_UPDATE_SEED, | ||
| } | ||
| } | ||
|
|
||
| /// Sets a custom hash seed (default: 9001). | ||
| /// | ||
| /// **Important**: Filters with different seeds cannot be merged. | ||
| /// | ||
| /// # Examples | ||
| /// | ||
| /// ``` | ||
| /// # use datasketches::bloom::BloomFilterBuilder; | ||
| /// let filter = BloomFilterBuilder::with_accuracy(100, 0.01) | ||
| /// .seed(12345) | ||
| /// .build(); | ||
| /// ``` | ||
| pub fn seed(mut self, seed: u64) -> Self { | ||
| self.seed = seed; | ||
| self | ||
| } | ||
|
|
||
| /// Builds the Bloom filter. | ||
| /// | ||
| /// # Panics | ||
| /// | ||
| /// Panics if neither `with_accuracy()` nor `with_size()` was called. | ||
| pub fn build(self) -> BloomFilter { | ||
| let capacity_bits = self.num_bits; | ||
| let num_hashes = self.num_hashes; | ||
|
|
||
| let num_words = capacity_bits.div_ceil(64) as usize; | ||
| let bit_array = vec![0u64; num_words]; | ||
|
|
||
| BloomFilter { | ||
| seed: self.seed, | ||
| num_hashes, | ||
| capacity_bits, | ||
| num_bits_set: 0, | ||
| bit_array, | ||
| } | ||
| } | ||
|
|
||
| /// Suggests optimal number of bits given max items and target FPP. | ||
| /// | ||
| /// Formula: `m = -n * ln(p) / (ln(2)^2)` | ||
| /// where n = max_items, p = fpp | ||
| /// | ||
| /// # Examples | ||
| /// | ||
| /// ``` | ||
| /// # use datasketches::bloom::BloomFilterBuilder; | ||
| /// let bits = BloomFilterBuilder::suggest_num_bits(1000, 0.01); | ||
| /// assert!(bits > 9000 && bits < 10000); // ~9585 bits | ||
| /// ``` | ||
| pub fn suggest_num_bits(max_items: u64, fpp: f64) -> u64 { | ||
| let n = max_items as f64; | ||
| let p = fpp; | ||
| let ln2_squared = std::f64::consts::LN_2 * std::f64::consts::LN_2; | ||
|
|
||
| let bits = (-n * p.ln() / ln2_squared).ceil() as u64; | ||
|
|
||
| // Round up to multiple of 64 for efficiency | ||
| let bits = bits.div_ceil(64) * 64; | ||
|
|
||
| bits.clamp(MIN_NUM_BITS, MAX_NUM_BITS) | ||
| } | ||
|
|
||
| /// Suggests optimal number of hash functions given max items and bit count. | ||
| /// | ||
| /// Formula: `k = (m/n) * ln(2)` | ||
| /// where m = num_bits, n = max_items | ||
| /// | ||
| /// # Examples | ||
| /// | ||
| /// ``` | ||
| /// # use datasketches::bloom::BloomFilterBuilder; | ||
| /// let hashes = BloomFilterBuilder::suggest_num_hashes_from_accuracy(1000, 10000); | ||
| /// assert_eq!(hashes, 7); // Optimal k ≈ 6.93 | ||
| /// ``` | ||
| pub fn suggest_num_hashes_from_accuracy(max_items: u64, num_bits: u64) -> u16 { | ||
| let m = num_bits as f64; | ||
| let n = max_items as f64; | ||
|
|
||
| let k = (m / n * std::f64::consts::LN_2).round(); | ||
|
|
||
| (k as u16).clamp(1, 100) // Reasonable bounds | ||
| } | ||
|
|
||
| /// Suggests optimal number of hash functions from target FPP. | ||
| /// | ||
| /// Formula: `k = -log2(p)` | ||
| /// where p = fpp | ||
| /// | ||
| /// # Examples | ||
| /// | ||
| /// ``` | ||
| /// # use datasketches::bloom::BloomFilterBuilder; | ||
| /// let hashes = BloomFilterBuilder::suggest_num_hashes_from_fpp(0.01); | ||
| /// assert_eq!(hashes, 7); // -log2(0.01) ≈ 6.64 | ||
| /// ``` | ||
| pub fn suggest_num_hashes_from_fpp(fpp: f64) -> u16 { | ||
| let k = -fpp.log2(); | ||
| (k.round() as u16).clamp(1, 100) | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,127 @@ | ||
| // Licensed to the Apache Software Foundation (ASF) under one | ||
| // or more contributor license agreements. See the NOTICE file | ||
| // distributed with this work for additional information | ||
| // regarding copyright ownership. The ASF licenses this file | ||
| // to you under the Apache License, Version 2.0 (the | ||
| // "License"); you may not use this file except in compliance | ||
| // with the License. You may obtain a copy of the License at | ||
| // | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, | ||
| // software distributed under the License is distributed on an | ||
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| // KIND, either express or implied. See the License for the | ||
| // specific language governing permissions and limitations | ||
| // under the License. | ||
|
|
||
| //! Bloom Filter implementation for probabilistic set membership testing. | ||
| //! | ||
| //! A Bloom filter is a space-efficient probabilistic data structure used to test whether | ||
| //! an element is a member of a set. False positive matches are possible, but false negatives | ||
| //! are not. In other words, a query returns either "possibly in set" or "definitely not in set". | ||
| //! | ||
| //! # Properties | ||
| //! | ||
| //! - **No false negatives**: If an item was inserted, `contains()` will always return `true` | ||
| //! - **Possible false positives**: `contains()` may return `true` for items never inserted | ||
| //! - **Fixed size**: Unlike typical sketches, Bloom filters do not resize automatically | ||
| //! - **Linear space**: Size is proportional to the expected number of distinct items | ||
| //! | ||
| //! # Usage | ||
| //! | ||
| //! ```rust | ||
| //! use datasketches::bloom::BloomFilter; | ||
| //! use datasketches::bloom::BloomFilterBuilder; | ||
| //! | ||
| //! // Create a filter optimized for 1000 items with 1% false positive rate | ||
| //! let mut filter = BloomFilterBuilder::with_accuracy(1000, 0.01).build(); | ||
| //! | ||
| //! // Insert items | ||
| //! filter.insert("apple"); | ||
| //! filter.insert("banana"); | ||
| //! filter.insert(42_u64); | ||
| //! | ||
| //! // Check membership | ||
| //! assert!(filter.contains(&"apple")); // true - definitely inserted | ||
| //! assert!(!filter.contains(&"grape")); // false - never inserted (probably) | ||
| //! | ||
| //! // Get statistics | ||
| //! println!("Capacity: {} bits", filter.capacity()); | ||
| //! println!("Bits used: {}", filter.bits_used()); | ||
| //! println!("Est. FPP: {:.4}%", filter.estimated_fpp() * 100.0); | ||
| //! ``` | ||
| //! | ||
| //! # Creating Filters | ||
| //! | ||
| //! There are two ways to create a Bloom filter: | ||
| //! | ||
| //! ## By Accuracy (Recommended) | ||
| //! | ||
| //! Automatically calculates optimal size and hash functions: | ||
| //! | ||
| //! ```rust | ||
| //! # use datasketches::bloom::BloomFilterBuilder; | ||
| //! let filter = BloomFilterBuilder::with_accuracy( | ||
| //! 10_000, // Expected max items | ||
| //! 0.01, // Target false positive probability (1%) | ||
| //! ) | ||
| //! .seed(9001) // Optional: custom seed | ||
| //! .build(); | ||
| //! ``` | ||
| //! | ||
| //! ## By Size (Manual) | ||
| //! | ||
| //! Specify exact bit count and hash functions: | ||
| //! | ||
| //! ```rust | ||
| //! # use datasketches::bloom::BloomFilterBuilder; | ||
| //! let filter = BloomFilterBuilder::with_size( | ||
| //! 95_851, // Number of bits | ||
| //! 7, // Number of hash functions | ||
| //! ) | ||
| //! .build(); | ||
| //! ``` | ||
| //! | ||
| //! # Set Operations | ||
| //! | ||
| //! Bloom filters support efficient set operations: | ||
| //! | ||
| //! ```rust | ||
| //! # use datasketches::bloom::BloomFilterBuilder; | ||
| //! let mut filter1 = BloomFilterBuilder::with_accuracy(100, 0.01).build(); | ||
| //! let mut filter2 = BloomFilterBuilder::with_accuracy(100, 0.01).build(); | ||
| //! | ||
| //! filter1.insert("a"); | ||
| //! filter2.insert("b"); | ||
| //! | ||
| //! // Union: recognizes items from either filter | ||
| //! filter1.union(&filter2); | ||
| //! assert!(filter1.contains(&"a")); | ||
| //! assert!(filter1.contains(&"b")); | ||
| //! | ||
| //! // Intersect: recognizes only items in both filters | ||
| //! // filter1.intersect(&filter2); | ||
| //! | ||
| //! // Invert: approximately inverts set membership | ||
| //! // filter1.invert(); | ||
| //! ``` | ||
| //! | ||
| //! # Implementation Details | ||
| //! | ||
| //! - Uses XXHash64 for hashing | ||
| //! - Implements double hashing (Kirsch-Mitzenmacher method) for k hash functions | ||
| //! - Bits packed efficiently in `u64` words | ||
| //! - Compatible serialization format (family ID: 21) | ||
| //! | ||
| //! # References | ||
| //! | ||
| //! - Bloom, Burton H. (1970). "Space/time trade-offs in hash coding with allowable errors" | ||
| //! - Kirsch and Mitzenmacher (2008). "Less Hashing, Same Performance: Building a Better Bloom | ||
| //! Filter" | ||
|
|
||
| mod builder; | ||
| mod sketch; | ||
|
|
||
| pub use self::builder::BloomFilterBuilder; | ||
| pub use self::sketch::BloomFilter; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.