pub(in barrier) struct DatabaseCheckpointControl {
pub(super) database_id: DatabaseId,
pub(super) state: BarrierWorkerState,
command_ctx_queue: BTreeMap<u64, EpochNode>,
completing_barrier: Option<u64>,
committed_epoch: Option<u64>,
pub(super) database_info: InflightDatabaseInfo,
pub creating_streaming_job_controls: HashMap<JobId, CreatingStreamingJobControl>,
metrics: DatabaseCheckpointControlMetrics,
}Expand description
Controls the concurrent execution of commands.
Fields§
§database_id: DatabaseId§state: BarrierWorkerState§command_ctx_queue: BTreeMap<u64, EpochNode>Save the state and message of barrier in order.
Key is the prev_epoch.
completing_barrier: Option<u64>The barrier that are completing.
Some(prev_epoch)
committed_epoch: Option<u64>§database_info: InflightDatabaseInfo§creating_streaming_job_controls: HashMap<JobId, CreatingStreamingJobControl>§metrics: DatabaseCheckpointControlMetricsImplementations§
Source§impl DatabaseCheckpointControl
impl DatabaseCheckpointControl
fn new(database_id: DatabaseId, shared_actor_infos: SharedActorInfos) -> Self
pub(crate) fn recovery( database_id: DatabaseId, state: BarrierWorkerState, committed_epoch: u64, database_info: InflightDatabaseInfo, creating_streaming_job_controls: HashMap<JobId, CreatingStreamingJobControl>, ) -> Self
pub(crate) fn is_valid_after_worker_err(&self, worker_id: WorkerId) -> bool
fn total_command_num(&self) -> usize
Sourcefn update_barrier_nums_metrics(&self)
fn update_barrier_nums_metrics(&self)
Update the metrics of barrier nums.
Sourcefn enqueue_command(
&mut self,
command_ctx: CommandContext,
notifiers: Vec<Notifier>,
creating_jobs_to_wait: HashSet<JobId>,
)
fn enqueue_command( &mut self, command_ctx: CommandContext, notifiers: Vec<Notifier>, creating_jobs_to_wait: HashSet<JobId>, )
Enqueue a barrier command
Sourcefn barrier_collected(
&mut self,
partial_graph_id: PartialGraphId,
collected_barrier: CollectedBarrier,
periodic_barriers: &mut PeriodicBarriers,
) -> MetaResult<()>
fn barrier_collected( &mut self, partial_graph_id: PartialGraphId, collected_barrier: CollectedBarrier, periodic_barriers: &mut PeriodicBarriers, ) -> MetaResult<()>
Change the state of this prev_epoch to Completed. Return continuous nodes
with Completed starting from first node [Completed..InFlight) and remove them.
Sourcefn can_inject_barrier(&self, in_flight_barrier_nums: usize) -> bool
fn can_inject_barrier(&self, in_flight_barrier_nums: usize) -> bool
Pause inject barrier until True.
Source§impl DatabaseCheckpointControl
impl DatabaseCheckpointControl
Sourcefn collect_backfill_pinned_upstream_log_epoch(
&self,
) -> HashMap<JobId, (u64, HashSet<TableId>)>
fn collect_backfill_pinned_upstream_log_epoch( &self, ) -> HashMap<JobId, (u64, HashSet<TableId>)>
return creating job table fragment id -> (backfill progress epoch , {upstream_mv_table_id})
fn collect_no_shuffle_fragment_relations_for_reschedule_check( &self, ) -> Vec<(FragmentId, FragmentId)>
fn collect_reschedule_blocked_jobs_for_creating_jobs_inflight( &self, ) -> MetaResult<HashSet<JobId>>
fn collect_reschedule_blocked_job_ids( &self, reschedules: &HashMap<FragmentId, Reschedule>, fragment_actors: &HashMap<FragmentId, HashSet<ActorId>>, blocked_job_ids: &HashSet<JobId>, ) -> HashSet<JobId>
fn next_complete_barrier_task( &mut self, task: &mut Option<CompleteBarrierTask>, context: Option<(&mut PeriodicBarriers, &mut PartialGraphManager)>, hummock_version_stats: &HummockVersionStats, )
fn ack_completed( &mut self, command_prev_epoch: Option<u64>, creating_job_epochs: Vec<(JobId, u64)>, )
fn handle_refresh_table_info( &self, task: &mut Option<CompleteBarrierTask>, node: &EpochNode, )
Source§impl DatabaseCheckpointControl
impl DatabaseCheckpointControl
Sourcefn handle_new_barrier(
&mut self,
command: Option<(Command, Vec<Notifier>)>,
checkpoint: bool,
span: Span,
partial_graph_manager: &mut PartialGraphManager,
hummock_version_stats: &HummockVersionStats,
) -> MetaResult<()>
fn handle_new_barrier( &mut self, command: Option<(Command, Vec<Notifier>)>, checkpoint: bool, span: Span, partial_graph_manager: &mut PartialGraphManager, hummock_version_stats: &HummockVersionStats, ) -> MetaResult<()>
Handle the new barrier from the scheduled queue and inject it.
Source§impl DatabaseCheckpointControl
impl DatabaseCheckpointControl
Sourcefn collect_base_info(
&self,
) -> (HashSet<TableId>, HashMap<WorkerId, HashSet<ActorId>>)
fn collect_base_info( &self, ) -> (HashSet<TableId>, HashMap<WorkerId, HashSet<ActorId>>)
Collect table IDs to commit and actor IDs to collect from current fragment infos.
Sourcefn apply_simple_command(
&self,
mutation: Option<Mutation>,
command_name: &'static str,
) -> (Option<Mutation>, HashSet<TableId>, Option<StreamJobActorsToCreate>, HashMap<WorkerId, HashSet<ActorId>>, PostCollectCommand)
fn apply_simple_command( &self, mutation: Option<Mutation>, command_name: &'static str, ) -> (Option<Mutation>, HashSet<TableId>, Option<StreamJobActorsToCreate>, HashMap<WorkerId, HashSet<ActorId>>, PostCollectCommand)
Helper for the simplest command variants: those that only need a
pre-computed mutation and a command name, with no actors to create
and no additional side effects on self.
Sourcepub(super) fn apply_command(
&mut self,
command: Option<Command>,
notifiers: &mut Vec<Notifier>,
barrier_info: &BarrierInfo,
partial_graph_manager: &mut PartialGraphManager,
hummock_version_stats: &HummockVersionStats,
) -> MetaResult<ApplyCommandInfo>
pub(super) fn apply_command( &mut self, command: Option<Command>, notifiers: &mut Vec<Notifier>, barrier_info: &BarrierInfo, partial_graph_manager: &mut PartialGraphManager, hummock_version_stats: &HummockVersionStats, ) -> MetaResult<ApplyCommandInfo>
Returns the inflight actor infos that have included the newly added actors in the given command. The dropped actors will be removed from the state after the info get resolved.
Auto Trait Implementations§
impl Freeze for DatabaseCheckpointControl
impl !RefUnwindSafe for DatabaseCheckpointControl
impl Send for DatabaseCheckpointControl
impl Sync for DatabaseCheckpointControl
impl Unpin for DatabaseCheckpointControl
impl !UnwindSafe for DatabaseCheckpointControl
Blanket Implementations§
§impl<U> As for U
impl<U> As for U
§fn as_<T>(self) -> Twhere
T: CastFrom<U>,
fn as_<T>(self) -> Twhere
T: CastFrom<U>,
self to type T. The semantics of numeric casting with the as operator are followed, so <T as As>::as_::<U> can be used in the same way as T as U for numeric conversions. Read more§impl<T> AsAny for T
impl<T> AsAny for T
§fn any_ref(&self) -> &(dyn Any + Sync + Send + 'static)
fn any_ref(&self) -> &(dyn Any + Sync + Send + 'static)
dyn Any reference to the object: Read more§fn as_any(self: Arc<T>) -> Arc<dyn Any + Sync + Send>
fn as_any(self: Arc<T>) -> Arc<dyn Any + Sync + Send>
Arc<dyn Any> reference to the object: Read more§fn into_any(self: Box<T>) -> Box<dyn Any + Sync + Send>
fn into_any(self: Box<T>) -> Box<dyn Any + Sync + Send>
Box<dyn Any>: Read more§fn type_name(&self) -> &'static str
fn type_name(&self) -> &'static str
std::any::type_name, since Any does not provide it and
Any::type_id is useless as a debugging aid (its Debug is just a mess of hex digits).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
§impl<T> Conv for T
impl<T> Conv for T
§impl<T> Downcast for Twhere
T: AsAny + ?Sized,
impl<T> Downcast for Twhere
T: AsAny + ?Sized,
§fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
Any.§fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
Any.§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self to use its Binary implementation when Debug-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self to use its Display implementation when
Debug-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self to use its Octal implementation when Debug-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<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>
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>
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 more§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::Request§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
type Err = Infallible
fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>
§impl<L> LayerExt<L> for L
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
Layered].Source§impl<M> MetricVecRelabelExt for M
impl<M> MetricVecRelabelExt for M
Source§fn relabel(
self,
metric_level: MetricLevel,
relabel_threshold: MetricLevel,
) -> RelabeledMetricVec<M>
fn relabel( self, metric_level: MetricLevel, relabel_threshold: MetricLevel, ) -> RelabeledMetricVec<M>
RelabeledMetricVec::with_metric_level.Source§fn relabel_n(
self,
metric_level: MetricLevel,
relabel_threshold: MetricLevel,
relabel_num: usize,
) -> RelabeledMetricVec<M>
fn relabel_n( self, metric_level: MetricLevel, relabel_threshold: MetricLevel, relabel_num: usize, ) -> RelabeledMetricVec<M>
RelabeledMetricVec::with_metric_level_relabel_n.Source§fn relabel_debug_1(
self,
relabel_threshold: MetricLevel,
) -> RelabeledMetricVec<M>
fn relabel_debug_1( self, relabel_threshold: MetricLevel, ) -> RelabeledMetricVec<M>
RelabeledMetricVec::with_metric_level_relabel_n with metric_level set to
MetricLevel::Debug and relabel_num set to 1.§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§impl<T> Scope for T
impl<T> Scope for T
§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.