Enum datafusion::logical_plan::plan::Partitioning
source · [−]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, Global>, usize)
Allocate rows based on a hash of one of more expressions and the specified number of partitions. This partitioning scheme is not yet fully supported. See https://issues.apache.org/jira/browse/ARROW-11011
Trait Implementations
sourceimpl Clone for Partitioning
impl Clone for Partitioning
sourcefn clone(&self) -> Partitioning
fn clone(&self) -> Partitioning
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl !RefUnwindSafe for Partitioning
impl Send for Partitioning
impl Sync for Partitioning
impl Unpin for Partitioning
impl !UnwindSafe for Partitioning
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more