Trait mz_compute::logging::compute::LogDataflowErrors

source ·
pub(crate) trait LogDataflowErrors {
    // Required method
    fn log_dataflow_errors(
        self,
        logger: Logger<ComputeEvent, WorkerIdentifier>,
        export_id: GlobalId,
    ) -> Self;
}
Expand description

Extension trait to attach ComputeEvent::DataflowError logging operators to collections and batch streams.

Required Methods§

source

fn log_dataflow_errors( self, logger: Logger<ComputeEvent, WorkerIdentifier>, export_id: GlobalId, ) -> Self

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<G, B> LogDataflowErrors for Stream<G, B>
where G: Scope, for<'a> B: BatchReader<DiffGat<'a> = &'a Diff> + Clone + 'static,

source§

fn log_dataflow_errors( self, logger: Logger<ComputeEvent, WorkerIdentifier>, export_id: GlobalId, ) -> Self

source§

impl<G, D> LogDataflowErrors for Collection<G, D, Diff>
where G: Scope, D: Data,

source§

fn log_dataflow_errors( self, logger: Logger<ComputeEvent, WorkerIdentifier>, export_id: GlobalId, ) -> Self

Implementors§