pub enum Partitioning {
RoundRobinBatch(usize),
Hash(Vec<Expr>, usize),
DistributeBy(Vec<Expr>),
}
Expand description
Logical partitioning schemes supported by the repartition operator.
Variants§
RoundRobinBatch(usize)
Allocate batches using a round-robin algorithm and the specified number of partitions
Hash(Vec<Expr>, usize)
Allocate rows based on a hash of one of more expressions and the specified number of partitions.
DistributeBy(Vec<Expr>)
The DISTRIBUTE BY clause is used to repartition the data based on the input expressions
Trait Implementations§
source§impl Clone for Partitioning
impl Clone for Partitioning
source§fn clone(&self) -> Partitioning
fn clone(&self) -> Partitioning
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more