Struct mz_persist_client::internal::state::StateCollections
source · pub struct StateCollections<T> {
pub(crate) last_gc_req: SeqNo,
pub(crate) rollups: BTreeMap<SeqNo, HollowRollup>,
pub(crate) leased_readers: BTreeMap<LeasedReaderId, LeasedReaderState<T>>,
pub(crate) critical_readers: BTreeMap<CriticalReaderId, CriticalReaderState<T>>,
pub(crate) writers: BTreeMap<WriterId, WriterState<T>>,
pub(crate) schemas: BTreeMap<SchemaId, EncodedSchemas>,
pub(crate) trace: Trace<T>,
}
Fields§
§last_gc_req: SeqNo
§rollups: BTreeMap<SeqNo, HollowRollup>
§leased_readers: BTreeMap<LeasedReaderId, LeasedReaderState<T>>
§critical_readers: BTreeMap<CriticalReaderId, CriticalReaderState<T>>
§writers: BTreeMap<WriterId, WriterState<T>>
§schemas: BTreeMap<SchemaId, EncodedSchemas>
§trace: Trace<T>
Implementations§
source§impl<T> StateCollections<T>
impl<T> StateCollections<T>
pub fn add_rollup( &mut self, add_rollup: (SeqNo, &HollowRollup), ) -> ControlFlow<NoOpStateTransition<bool>, bool>
pub fn remove_rollups( &mut self, remove_rollups: &[(SeqNo, PartialRollupKey)], ) -> ControlFlow<NoOpStateTransition<Vec<SeqNo>>, Vec<SeqNo>>
pub fn register_leased_reader( &mut self, hostname: &str, reader_id: &LeasedReaderId, purpose: &str, seqno: SeqNo, lease_duration: Duration, heartbeat_timestamp_ms: u64, use_critical_since: bool, ) -> ControlFlow<NoOpStateTransition<(LeasedReaderState<T>, SeqNo)>, (LeasedReaderState<T>, SeqNo)>
pub fn register_critical_reader<O: Opaque + Codec64>( &mut self, hostname: &str, reader_id: &CriticalReaderId, purpose: &str, ) -> ControlFlow<NoOpStateTransition<CriticalReaderState<T>>, CriticalReaderState<T>>
pub fn register_schema<K: Codec, V: Codec>( &mut self, key_schema: &K::Schema, val_schema: &V::Schema, ) -> ControlFlow<NoOpStateTransition<Option<SchemaId>>, Option<SchemaId>>
pub fn compare_and_evolve_schema<K: Codec, V: Codec>( &mut self, expected: SchemaId, key_schema: &K::Schema, val_schema: &V::Schema, ) -> ControlFlow<NoOpStateTransition<CaESchema<K, V>>, CaESchema<K, V>>
pub fn compare_and_append( &mut self, batch: &HollowBatch<T>, writer_id: &WriterId, heartbeat_timestamp_ms: u64, lease_duration_ms: u64, idempotency_token: &IdempotencyToken, debug_info: &HandleDebugState, inline_writes_total_max_bytes: usize, record_compactions: bool, claim_compaction_percent: usize, claim_compaction_min_version: Option<&Version>, ) -> ControlFlow<CompareAndAppendBreak<T>, Vec<FueledMergeReq<T>>>
pub fn apply_merge_res( &mut self, res: &FueledMergeRes<T>, ) -> ControlFlow<NoOpStateTransition<ApplyMergeResult>, ApplyMergeResult>
pub fn spine_exert( &mut self, fuel: usize, ) -> ControlFlow<NoOpStateTransition<Vec<FueledMergeReq<T>>>, Vec<FueledMergeReq<T>>>
pub fn downgrade_since( &mut self, reader_id: &LeasedReaderId, seqno: SeqNo, outstanding_seqno: Option<SeqNo>, new_since: &Antichain<T>, heartbeat_timestamp_ms: u64, ) -> ControlFlow<NoOpStateTransition<Since<T>>, Since<T>>
pub fn compare_and_downgrade_since<O: Opaque + Codec64>( &mut self, reader_id: &CriticalReaderId, expected_opaque: &O, (new_opaque, new_since): (&O, &Antichain<T>), ) -> ControlFlow<NoOpStateTransition<Result<Since<T>, (O, Since<T>)>>, Result<Since<T>, (O, Since<T>)>>
pub fn heartbeat_leased_reader( &mut self, reader_id: &LeasedReaderId, heartbeat_timestamp_ms: u64, ) -> ControlFlow<NoOpStateTransition<bool>, bool>
pub fn expire_leased_reader( &mut self, reader_id: &LeasedReaderId, ) -> ControlFlow<NoOpStateTransition<bool>, bool>
pub fn expire_critical_reader( &mut self, reader_id: &CriticalReaderId, ) -> ControlFlow<NoOpStateTransition<bool>, bool>
pub fn expire_writer( &mut self, writer_id: &WriterId, ) -> ControlFlow<NoOpStateTransition<bool>, bool>
fn leased_reader(&mut self, id: &LeasedReaderId) -> &mut LeasedReaderState<T>
fn critical_reader( &mut self, id: &CriticalReaderId, ) -> &mut CriticalReaderState<T>
fn critical_since(&self) -> Option<Antichain<T>>
fn update_since(&mut self)
fn seqno_since(&self, seqno: SeqNo) -> SeqNo
fn tombstone_batch() -> HollowBatch<T>
pub(crate) fn is_tombstone(&self) -> bool
pub(crate) fn is_single_empty_batch(&self) -> bool
pub fn become_tombstone_and_shrink( &mut self, ) -> ControlFlow<NoOpStateTransition<()>, ()>
Trait Implementations§
source§impl<T: Clone> Clone for StateCollections<T>
impl<T: Clone> Clone for StateCollections<T>
source§fn clone(&self) -> StateCollections<T>
fn clone(&self) -> StateCollections<T>
Returns a copy 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 moresource§impl<T: Debug> Debug for StateCollections<T>
impl<T: Debug> Debug for StateCollections<T>
source§impl<T: PartialEq> PartialEq for StateCollections<T>
impl<T: PartialEq> PartialEq for StateCollections<T>
impl<T> StructuralPartialEq for StateCollections<T>
Auto Trait Implementations§
impl<T> Freeze for StateCollections<T>where
T: Freeze,
impl<T> RefUnwindSafe for StateCollections<T>where
T: RefUnwindSafe,
impl<T> Send for StateCollections<T>
impl<T> Sync for StateCollections<T>
impl<T> Unpin for StateCollections<T>where
T: Unpin,
impl<T> UnwindSafe for StateCollections<T>where
T: RefUnwindSafe + UnwindSafe,
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
Creates a shared type from an unshared type.
source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> ProgressEventTimestamp for T
impl<T> ProgressEventTimestamp for T
source§impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
source§fn into_rust(self) -> Result<R, TryFromProtoError>
fn into_rust(self) -> Result<R, TryFromProtoError>
See
RustType::from_proto
.source§fn from_rust(rust: &R) -> P
fn from_rust(rust: &R) -> P
See
RustType::into_proto
.source§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
The method of
std::ops::AddAssign
, for types that do not implement AddAssign
.