pub struct PipelineSection {
pub failure_policy: Option<FailurePolicy>,
pub batch_size: Option<usize>,
pub batch_max_wait: Option<Duration>,
pub timeout: Option<Duration>,
pub max_in_flight: Option<usize>,
}Expand description
Pipeline-wide apply-window options ([pipeline] in TOML).
These are not SurrealDB sink settings — they control how surreal-sync batches source events and overlaps transform work before ordered sink apply.
Fields§
§failure_policy: Option<FailurePolicy>Override for ApplyOpts::failure_policy when set.
batch_size: Option<usize>Override for ApplyOpts::batch_size when set.
batch_max_wait: Option<Duration>Override for ApplyOpts::batch_max_wait when set.
timeout: Option<Duration>Outer whole-pipeline transform timeout (covers all stages + retries).
max_in_flight: Option<usize>Override for ApplyOpts::max_in_flight when set.
Trait Implementations§
Source§impl Clone for PipelineSection
impl Clone for PipelineSection
Source§fn clone(&self) -> PipelineSection
fn clone(&self) -> PipelineSection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PipelineSection
impl Debug for PipelineSection
Source§impl Default for PipelineSection
impl Default for PipelineSection
Source§fn default() -> PipelineSection
fn default() -> PipelineSection
Returns the “default value” for a type. Read more
impl Eq for PipelineSection
Source§impl PartialEq for PipelineSection
impl PartialEq for PipelineSection
impl StructuralPartialEq for PipelineSection
Auto Trait Implementations§
impl Freeze for PipelineSection
impl RefUnwindSafe for PipelineSection
impl Send for PipelineSection
impl Sync for PipelineSection
impl Unpin for PipelineSection
impl UnsafeUnpin for PipelineSection
impl UnwindSafe for PipelineSection
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.