Skip to main content

BloomFilterProperties

Struct BloomFilterProperties 

Source
pub struct BloomFilterProperties {
    pub fpp: f64,
    pub ndv: u64,
}
Expand description

Controls the bloom filter to be computed by the writer.

The bloom filter is initially sized for ndv distinct values at the given fpp, then automatically folded down after all values are inserted to achieve optimal size while maintaining the target fpp. See Sbbf::fold_to_target_fpp for details on the folding algorithm.

Fields§

§fpp: f64

False positive probability. This should be always between 0 and 1 exclusive. Defaults to DEFAULT_BLOOM_FILTER_FPP.

You should set this value by calling WriterPropertiesBuilder::set_bloom_filter_fpp.

The bloom filter data structure is a trade of between disk and memory space versus fpp, the smaller the fpp, the more memory and disk space is required, thus setting it to a reasonable value e.g. 0.1, 0.05, or 0.001 is recommended.

This value also serves as the target FPP for bloom filter folding: after all values are inserted, the filter is folded down to the smallest size that still meets this FPP.

§ndv: u64

Maximum expected number of distinct values. Defaults to DEFAULT_BLOOM_FILTER_NDV.

You should set this value by calling WriterPropertiesBuilder::set_bloom_filter_ndv.

When not explicitly set via the builder, this defaults to max_row_group_row_count (resolved at build time). The bloom filter is initially sized for this many distinct values at the given fpp, then folded down after insertion to achieve optimal size. A good heuristic is to set this to the expected number of rows in the row group. If fewer distinct values are actually written, the filter will be automatically compacted via folding.

Thus the only negative side of overestimating this value is that the bloom filter will use more memory during writing than necessary, but it will not affect the final bloom filter size on disk.

If you wish to reduce memory usage during writing and are able to make a reasonable estimate of the number of distinct values in a row group, it is recommended to set this value explicitly rather than relying on the default dynamic sizing based on max_row_group_row_count. If you do set this value explicitly it is probably best to set it for each column individually via WriterPropertiesBuilder::set_column_bloom_filter_ndv rather than globally, since different columns may have different numbers of distinct values.

Trait Implementations§

Source§

impl Clone for BloomFilterProperties

Source§

fn clone(&self) -> BloomFilterProperties

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for BloomFilterProperties

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for BloomFilterProperties

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl PartialEq for BloomFilterProperties

Source§

fn eq(&self, other: &BloomFilterProperties) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for BloomFilterProperties

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,

§

impl<T> Ungil for T
where T: Send,