pub struct CheckpointController { /* private fields */ }Expand description
Coordinator that drives checkpoint rounds across the operator topology.
Implementations§
Source§impl CheckpointController
impl CheckpointController
Sourcepub fn new(
config: CheckpointControllerConfig,
propagator: Arc<MarkerPropagator>,
store: Arc<dyn CheckpointStore>,
) -> Self
pub fn new( config: CheckpointControllerConfig, propagator: Arc<MarkerPropagator>, store: Arc<dyn CheckpointStore>, ) -> Self
Build a controller.
Sourcepub fn config(&self) -> &CheckpointControllerConfig
pub fn config(&self) -> &CheckpointControllerConfig
Configuration accessor.
Sourcepub fn propagator(&self) -> &Arc<MarkerPropagator> ⓘ
pub fn propagator(&self) -> &Arc<MarkerPropagator> ⓘ
Marker propagator handle (so operator code can re-use the same propagator).
Sourcepub fn register_operator(&self, op: OperatorId)
pub fn register_operator(&self, op: OperatorId)
Register an operator with the controller.
Sourcepub async fn commit_snapshot(
&self,
snapshot: OperatorSnapshot,
) -> CheckpointResult<bool>
pub async fn commit_snapshot( &self, snapshot: OperatorSnapshot, ) -> CheckpointResult<bool>
Acknowledge a snapshot from an operator.
Sourcepub fn progress(&self, cp: CheckpointId) -> Option<CheckpointProgress>
pub fn progress(&self, cp: CheckpointId) -> Option<CheckpointProgress>
Fetch the current progress snapshot for a checkpoint.
Sourcepub fn forget(&self, cp: CheckpointId)
pub fn forget(&self, cp: CheckpointId)
Drop progress for an old checkpoint (used when retiring rounds).
Sourcepub async fn latest_committed(&self) -> CheckpointResult<Option<CheckpointId>>
pub async fn latest_committed(&self) -> CheckpointResult<Option<CheckpointId>>
Latest checkpoint id known to the underlying store.
Sourcepub fn opened_rounds(&self) -> u64
pub fn opened_rounds(&self) -> u64
Number of rounds opened by the controller so far.
Sourcepub fn store(&self) -> &Arc<dyn CheckpointStore> ⓘ
pub fn store(&self) -> &Arc<dyn CheckpointStore> ⓘ
Snapshot store reference for callers that need to load on recovery.
Auto Trait Implementations§
impl !Freeze for CheckpointController
impl !RefUnwindSafe for CheckpointController
impl !UnwindSafe for CheckpointController
impl Send for CheckpointController
impl Sync for CheckpointController
impl Unpin for CheckpointController
impl UnsafeUnpin for CheckpointController
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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> 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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreimpl<T> MaybeDebug for T
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.