Skip to main content

SubBatchStrategy

Enum SubBatchStrategy 

Source
pub(crate) enum SubBatchStrategy {
    Values(usize),
    Levels(usize),
}
Expand description

How write_granular_chunk should cut mini-batch windows in one chunk.

Cutting on exact value counts is the precise option and the expensive one: it roughly doubles the number of mini-batches on a nullable column, because the level:value ratio no longer rounds a window up to cover a second value. It is used only where that precision buys something.

Variants§

§

Values(usize)

Cut after exactly this many values, walking definition levels to find the boundary.

Used against the data page budget for encodings that compress a value against its predecessor, where the round-up below costs whole values of output: 16 MiB rather than 2 MiB for 128 values at one null in 16. See #10538 for the measurements.

§

Levels(usize)

Cut after this many levels: the value budget scaled by the chunk’s level:value ratio, rounded up.

Used everywhere else, because everywhere else the round-up changes no bytes — the dictionary page budget shrinks toward zero as the dictionary fills, so a one-value budget is routine there for ordinary values, and PLAIN and DELTA_LENGTH_BYTE_ARRAY values cost the same wherever they land — while value-exact windows cost throughput (#10554).

The round-up is bounded, which is what makes it an acceptable price. A window spans ceil(values * levels / values_in_chunk) levels, so where one value already fills the budget it covers at most two values, whatever the null density. The page bound #9972 added therefore still holds; it is two values per page rather than one.

Trait Implementations§

Source§

impl Clone for SubBatchStrategy

Source§

fn clone(&self) -> SubBatchStrategy

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Copy for SubBatchStrategy

Source§

impl Debug for SubBatchStrategy

Source§

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

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

impl Eq for SubBatchStrategy

Source§

impl PartialEq for SubBatchStrategy

Source§

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

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

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

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for SubBatchStrategy

Auto Trait Implementations§

Blanket Implementations§

§

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

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
§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

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
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
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.

§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

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 = !

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

fn try_from(value: U) -> Result<T, !>

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<T> Ungil for T
where T: Send,