Skip to main content

ExecutionPlan

Enum ExecutionPlan 

Source
#[non_exhaustive]
pub enum ExecutionPlan { Sequence(Vec<ExecutionPlan>), Parallel(Vec<ExecutionPlan>), Execute { node_id: NodeId, }, Cached { node_id: NodeId, key: CacheKey, }, Loop { node_id: NodeId, body: Box<ExecutionPlan>, max_iterations: Option<usize>, }, Branch { node_id: NodeId, arms: Vec<(String, ExecutionPlan)>, }, Remote { node_id: NodeId, target: RemoteTarget, plan: Box<ExecutionPlan>, }, Empty, }
Expand description

A compiled execution plan produced by the compiler.

This is a recursive tree that the runtime walks to execute a pipeline. The compiler resolves caching, parallelism, and distribution before the runtime sees the plan.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Sequence(Vec<ExecutionPlan>)

Execute steps sequentially, one after another.

§

Parallel(Vec<ExecutionPlan>)

Execute branches concurrently (fork-join).

§

Execute

Execute a single filter node.

Fields

§node_id: NodeId
§

Cached

Load result from cache (resolved at compile time).

Fields

§node_id: NodeId
§

Loop

Iterate: execute body for each item in a collection.

Fields

§node_id: NodeId
§max_iterations: Option<usize>
§

Branch

Conditional branching: evaluate condition, pick an arm.

Fields

§node_id: NodeId
§

Remote

Execute a sub-plan on a remote worker.

Fields

§node_id: NodeId
§

Empty

No-op: nothing to execute (e.g. empty graph).

Implementations§

Source§

impl ExecutionPlan

Source

pub fn node_count(&self) -> usize

Count total nodes in the plan (Execute + Cached).

Source

pub fn cached_count(&self) -> usize

Count cached nodes in the plan.

Source

pub fn parallel_branch_count(&self) -> usize

Count parallel branches at the top level of the plan.

Source

pub fn node_ids(&self) -> Vec<&str>

Collect all node IDs referenced in the plan.

Source

pub fn summary(&self) -> PlanSummary

Create a PlanSummary for event payloads.

Source

pub fn simplify(self) -> Self

Flatten unnecessary nesting (e.g. Sequence of one element).

Source§

impl ExecutionPlan

Source

pub fn to_mermaid(&self) -> String

Render the execution plan as a Mermaid flowchart.

Trait Implementations§

Source§

impl Clone for ExecutionPlan

Source§

fn clone(&self) -> ExecutionPlan

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 ExecutionPlan

Source§

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

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

impl<'de> Deserialize<'de> for ExecutionPlan

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for ExecutionPlan

Source§

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

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

impl Serialize for ExecutionPlan

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

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> Same for T

Source§

type Output = T

Should always be Self
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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. 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.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,