Enum mz_compute_client::plan::Plan
source · pub enum Plan<T = Timestamp> {
Show 13 variants
Constant {
rows: Result<Vec<(Row, T, Diff)>, EvalError>,
},
Get {
id: Id,
keys: AvailableCollections,
plan: GetPlan,
},
Let {
id: LocalId,
value: Box<Plan<T>>,
body: Box<Plan<T>>,
},
LetRec {
ids: Vec<LocalId>,
values: Vec<Plan<T>>,
limits: Vec<Option<LetRecLimit>>,
body: Box<Plan<T>>,
},
Mfp {
input: Box<Plan<T>>,
mfp: MapFilterProject,
input_key_val: Option<(Vec<MirScalarExpr>, Option<Row>)>,
},
FlatMap {
input: Box<Plan<T>>,
func: TableFunc,
exprs: Vec<MirScalarExpr>,
mfp: MapFilterProject,
input_key: Option<Vec<MirScalarExpr>>,
},
Join {
inputs: Vec<Plan<T>>,
plan: JoinPlan,
},
Reduce {
input: Box<Plan<T>>,
key_val_plan: KeyValPlan,
plan: ReducePlan,
input_key: Option<Vec<MirScalarExpr>>,
},
TopK {
input: Box<Plan<T>>,
top_k_plan: TopKPlan,
},
Negate {
input: Box<Plan<T>>,
},
Threshold {
input: Box<Plan<T>>,
threshold_plan: ThresholdPlan,
},
Union {
inputs: Vec<Plan<T>>,
},
ArrangeBy {
input: Box<Plan<T>>,
forms: AvailableCollections,
input_key: Option<Vec<MirScalarExpr>>,
input_mfp: MapFilterProject,
},
}
Expand description
A rendering plan with as much conditional logic as possible removed.
Variants§
Constant
A collection containing a pre-determined collection.
Get
Fields
keys: AvailableCollections
Arrangements that will be available.
The collection will also be loaded if available, which it will not be for imported data, but which it may be for locally defined data.
A reference to a bound collection.
This is commonly either an external reference to an existing source or
maintained arrangement, or an internal reference to a Let
identifier.
Let
Fields
Binds value
to id
, and then results in body
with that binding.
This stage has the effect of sharing value
across multiple possible
uses in body
, and is the only mechanism we have for sharing collection
information across parts of a dataflow.
The binding is not available outside of body
.
LetRec
Fields
limits: Vec<Option<LetRecLimit>>
Maximum number of iterations. See further info on the MIR LetRec
.
Binds values
to ids
, evaluates them potentially recursively, and returns body
.
All bindings are available to all bindings, and to body
.
The contents of each binding are initially empty, and then updated through a sequence
of iterations in which each binding is updated in sequence, from the most recent values
of all bindings.
Mfp
Fields
mfp: MapFilterProject
Linear operator to apply to each record.
Map, Filter, and Project operators.
This stage contains work that we would ideally like to fuse to other plan stages, but for practical reasons cannot. For example: reduce, threshold, and topk stages are not able to absorb this operator.
FlatMap
Fields
exprs: Vec<MirScalarExpr>
Expressions that for each row prepare the arguments to func
.
mfp: MapFilterProject
Linear operator to apply to each record produced by func
.
input_key: Option<Vec<MirScalarExpr>>
The particular arrangement of the input we expect to use, if any
A variable number of output records for each input record.
This stage is a bit of a catch-all for logic that does not easily fit in map stages. This includes table valued functions, but also functions of multiple arguments, and functions that modify the sign of updates.
This stage allows a MapFilterProject
operator to be fused to its output,
and this can be very important as otherwise the output of func
is just
appended to the input record, for as many outputs as it has. This has the
unpleasant default behavior of repeating potentially large records that
are being unpacked, producing quadratic output in those cases. Instead,
in these cases use a mfp
member that projects away these large fields.
Join
Fields
A multiway relational equijoin, with fused map, filter, and projection.
This stage performs a multiway join among inputs
, using the equality
constraints expressed in plan
. The plan also describes the implementation
strategy we will use, and any pushed down per-record work.
Reduce
Fields
key_val_plan: KeyValPlan
A plan for changing input records into key, value pairs.
plan: ReducePlan
A plan for performing the reduce.
The implementation of reduction has several different strategies based on the properties of the reduction, and the input itself. Please check out the documentation for this type for more detail.
input_key: Option<Vec<MirScalarExpr>>
The particular arrangement of the input we expect to use, if any
Aggregation by key.
TopK
Fields
Key-based “Top K” operator, retaining the first K records in each group.
Negate
Inverts the sign of each update.
Threshold
Fields
threshold_plan: ThresholdPlan
A plan for performing the threshold.
The implementation of reduction has several different strategies based on the properties of the reduction, and the input itself. Please check out the documentation for this type for more detail.
Filters records that accumulate negatively.
Although the operator suppresses updates, it is a stateful operator taking resources proportional to the number of records with non-zero accumulation.
Union
Adds the contents of the input collections.
Importantly, this is multiset union, so the multiplicities of records will
add. This is in contrast to set union, where the multiplicities would be
capped at one. A set union can be formed with Union
followed by Reduce
implementing the “distinct” operator.
ArrangeBy
Fields
forms: AvailableCollections
A list of arrangement keys, and possibly a raw collection, that will be added to those of the input.
If any of these collection forms are already present in the input, they have no effect.
input_key: Option<Vec<MirScalarExpr>>
The key that must be used to access the input.
input_mfp: MapFilterProject
The MFP that must be applied to the input.
The input
plan, but with additional arrangements.
This operator does not change the logical contents of input
, but ensures
that certain arrangements are available in the results. This operator can
be important for e.g. the Join
stage which benefits from multiple arrangements
or to cap a Plan
so that indexes can be exported.
Implementations§
source§impl<T> Plan<T>
impl<T> Plan<T>
sourcepub fn children_mut(&mut self) -> impl Iterator<Item = &mut Self>
pub fn children_mut(&mut self) -> impl Iterator<Item = &mut Self>
Iterates through mutable references to child expressions.
source§impl Plan
impl Plan
sourcepub fn explain(
&self,
config: &ExplainConfig,
humanizer: Option<&dyn ExprHumanizer>
) -> String
pub fn explain( &self, config: &ExplainConfig, humanizer: Option<&dyn ExprHumanizer> ) -> String
Pretty-print this Plan to a string using a custom ExplainConfig and an optionally provided ExprHumanizer.
source§impl<T: Timestamp> Plan<T>
impl<T: Timestamp> Plan<T>
sourcepub fn arrange_by(
self,
collections: AvailableCollections,
old_collections: &AvailableCollections,
arity: usize
) -> Self
pub fn arrange_by( self, collections: AvailableCollections, old_collections: &AvailableCollections, arity: usize ) -> Self
Replace the plan with another one that has the collection in some additional forms.
sourcefn from_mir(
expr: &MirRelationExpr,
arrangements: &mut BTreeMap<Id, AvailableCollections>,
debug_info: LirDebugInfo<'_>
) -> Result<(Self, AvailableCollections), String>
fn from_mir( expr: &MirRelationExpr, arrangements: &mut BTreeMap<Id, AvailableCollections>, debug_info: LirDebugInfo<'_> ) -> Result<(Self, AvailableCollections), String>
This method converts a MirRelationExpr into a plan that can be directly rendered.
The rough structure is that we repeatedly extract map/filter/project operators
from each expression we see, bundle them up as a MapFilterProject
object, and
then produce a plan for the combination of that with the next operator.
The method takes as an argument the existing arrangements for each bound identifier,
which it will locally add to and remove from for Let
bindings (by the end of the
call it should contain the same bindings as when it started).
The result of the method is both a Plan
, but also a list of arrangements that
are certain to be produced, which can be relied on by the next steps in the plan.
Each of the arrangement keys is associated with an MFP that must be applied if that arrangement is used,
to back out the permutation associated with that arrangement.
An empty list of arrangement keys indicates that only a Collection
stream can
be assumed to exist.
fn from_mir_stack_safe( expr: &MirRelationExpr, arrangements: &mut BTreeMap<Id, AvailableCollections>, debug_info: LirDebugInfo<'_> ) -> Result<(Self, AvailableCollections), String>
sourcepub fn finalize_dataflow(
desc: DataflowDescription<OptimizedMirRelationExpr>,
enable_monotonic_oneshot_selects: bool
) -> Result<DataflowDescription<Self>, String>
pub fn finalize_dataflow( desc: DataflowDescription<OptimizedMirRelationExpr>, enable_monotonic_oneshot_selects: bool ) -> Result<DataflowDescription<Self>, String>
Convert the dataflow description into one that uses render plans.
sourcefn lower_dataflow(
desc: DataflowDescription<OptimizedMirRelationExpr>
) -> Result<DataflowDescription<Self>, String>
fn lower_dataflow( desc: DataflowDescription<OptimizedMirRelationExpr> ) -> Result<DataflowDescription<Self>, String>
Lowers the dataflow description from MIR to LIR. To this end, the method collects all available arrangements and based on this information creates plans for every object to be built for the dataflow.
sourcefn refine_source_mfps(dataflow: &mut DataflowDescription<Self>)
fn refine_source_mfps(dataflow: &mut DataflowDescription<Self>)
Refines the source instance descriptions for sources imported by dataflow
to
push down common MFP expressions.
sourcefn refine_single_time_dataflow(dataflow: &mut DataflowDescription<Self>)
fn refine_single_time_dataflow(dataflow: &mut DataflowDescription<Self>)
Refines the plans of objects to be built as part of dataflow
to take advantage
of monotonic operators if the dataflow refers to a single-time, i.e., is for a
one-shot SELECT query.
sourcepub fn partition_among(self, parts: usize) -> Vec<Self>
pub fn partition_among(self, parts: usize) -> Vec<Self>
Partitions the plan into parts
many disjoint pieces.
This is used to partition Plan::Constant
stages so that the work
can be distributed across many workers.
Trait Implementations§
source§impl Arbitrary for Plan
impl Arbitrary for Plan
§type Strategy = BoxedStrategy<Plan<Timestamp>>
type Strategy = BoxedStrategy<Plan<Timestamp>>
Strategy
used to generate values of type Self
.§type Parameters = ()
type Parameters = ()
arbitrary_with
accepts for configuration
of the generated Strategy
. Parameters must implement Default
.source§fn arbitrary_with(_: Self::Parameters) -> Self::Strategy
fn arbitrary_with(_: Self::Parameters) -> Self::Strategy
source§impl<T> CollectionPlan for Plan<T>
impl<T> CollectionPlan for Plan<T>
source§impl<'de, T> Deserialize<'de> for Plan<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for Plan<T>where T: Deserialize<'de>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
source§impl DisplayText<PlanRenderingContext<'_, Plan<Timestamp>>> for Plan
impl DisplayText<PlanRenderingContext<'_, Plan<Timestamp>>> for Plan
source§impl<T: PartialEq> PartialEq<Plan<T>> for Plan<T>
impl<T: PartialEq> PartialEq<Plan<T>> for Plan<T>
source§impl RustType<ProtoPlan> for Plan
impl RustType<ProtoPlan> for Plan
source§fn into_proto(&self) -> ProtoPlan
fn into_proto(&self) -> ProtoPlan
Self
into a Proto
value.source§fn from_proto(proto: ProtoPlan) -> Result<Self, TryFromProtoError>
fn from_proto(proto: ProtoPlan) -> Result<Self, TryFromProtoError>
impl<T: Eq> Eq for Plan<T>
impl<T> StructuralEq for Plan<T>
impl<T> StructuralPartialEq for Plan<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for Plan<T>where T: RefUnwindSafe,
impl<T> Send for Plan<T>where T: Send,
impl<T> Sync for Plan<T>where T: Sync,
impl<T> Unpin for Plan<T>where T: Unpin,
impl<T> UnwindSafe for Plan<T>where T: UnwindSafe,
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request
source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
impl<P, R> ProtoType<R> for Pwhere R: RustType<P>,
source§fn into_rust(self) -> Result<R, TryFromProtoError>
fn into_rust(self) -> Result<R, TryFromProtoError>
RustType::from_proto
.source§fn from_rust(rust: &R) -> P
fn from_rust(rust: &R) -> P
RustType::into_proto
.