pub struct GlobalCheckpoint {
pub checkpoint_id: u64,
pub operator_snapshots: HashMap<String, OperatorSnapshot>,
pub created_at: Instant,
pub total_size_bytes: usize,
pub stream_positions: HashMap<String, u64>,
}Expand description
Consistent global snapshot across all operators in the streaming job.
Fields§
§checkpoint_id: u64§operator_snapshots: HashMap<String, OperatorSnapshot>§created_at: Instant§total_size_bytes: usize§stream_positions: HashMap<String, u64>Stream read offsets at the time of the checkpoint.
Maps stream_id → offset, allowing the job to replay exactly from here.
Implementations§
Source§impl GlobalCheckpoint
impl GlobalCheckpoint
Sourcepub fn add_operator_snapshot(&mut self, snapshot: OperatorSnapshot)
pub fn add_operator_snapshot(&mut self, snapshot: OperatorSnapshot)
Add an operator snapshot to this global checkpoint.
Sourcepub fn set_stream_position(&mut self, stream_id: impl Into<String>, offset: u64)
pub fn set_stream_position(&mut self, stream_id: impl Into<String>, offset: u64)
Set the committed read offset for a stream.
Sourcepub fn is_complete(&self, expected_operators: &[String]) -> bool
pub fn is_complete(&self, expected_operators: &[String]) -> bool
Returns true when every expected operator has contributed a snapshot.
Sourcepub fn total_bytes(&self) -> usize
pub fn total_bytes(&self) -> usize
Total byte size of all operator state in this checkpoint.
Trait Implementations§
Source§impl Clone for GlobalCheckpoint
impl Clone for GlobalCheckpoint
Source§fn clone(&self) -> GlobalCheckpoint
fn clone(&self) -> GlobalCheckpoint
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for GlobalCheckpoint
impl RefUnwindSafe for GlobalCheckpoint
impl Send for GlobalCheckpoint
impl Sync for GlobalCheckpoint
impl Unpin for GlobalCheckpoint
impl UnsafeUnpin for GlobalCheckpoint
impl UnwindSafe for GlobalCheckpoint
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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 moreSource§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,
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.