Struct mz_storage_client::controller::rehydration::RehydrationTask
source · struct RehydrationTask<T> {
build_info: &'static BuildInfo,
command_rx: UnboundedReceiver<RehydrationCommand<T>>,
response_tx: UnboundedSender<StorageResponse<T>>,
sources: BTreeMap<GlobalId, CreateSourceCommand<T>>,
sinks: BTreeMap<GlobalId, CreateSinkCommand<T>>,
uppers: BTreeMap<GlobalId, Antichain<T>>,
sinces: BTreeMap<GlobalId, Antichain<T>>,
initialized: bool,
current_epoch: ClusterStartupEpoch,
config: StorageParameters,
metrics: RehydratingStorageClientMetrics,
}
Expand description
A task that manages rehydration.
Fields§
§build_info: &'static BuildInfo
The build information for this process.
command_rx: UnboundedReceiver<RehydrationCommand<T>>
A channel upon which commands intended for the storage replica are delivered.
response_tx: UnboundedSender<StorageResponse<T>>
A channel upon which responses from the storage replica are delivered.
sources: BTreeMap<GlobalId, CreateSourceCommand<T>>
The sources that have been observed.
sinks: BTreeMap<GlobalId, CreateSinkCommand<T>>
The exports that have been observed.
uppers: BTreeMap<GlobalId, Antichain<T>>
The upper frontier information received.
sinces: BTreeMap<GlobalId, Antichain<T>>
The since frontiers that have been observed.
initialized: bool
Set to true
once StorageCommand::InitializationComplete
has been
observed.
current_epoch: ClusterStartupEpoch
The current epoch for the replica we are connecting to.
config: StorageParameters
Storage configuration that has been observed.
metrics: RehydratingStorageClientMetrics
Prometheus metrics
Implementations§
source§impl<T> RehydrationTask<T>where
T: Timestamp + Lattice + Codec64,
StorageGrpcClient: StorageClient<T>,
impl<T> RehydrationTask<T>where
T: Timestamp + Lattice + Codec64,
StorageGrpcClient: StorageClient<T>,
async fn run(&mut self)
async fn step_await_address(&mut self) -> RehydrationTaskState<T>
async fn step_rehydrate(
&mut self,
location: ClusterReplicaLocation
) -> RehydrationTaskState<T>
async fn step_pump(
&mut self,
location: ClusterReplicaLocation,
client: Partitioned<StorageGrpcClient, StorageCommand<T>, StorageResponse<T>>
) -> RehydrationTaskState<T>
async fn send_commands(
&mut self,
location: ClusterReplicaLocation,
client: Partitioned<StorageGrpcClient, StorageCommand<T>, StorageResponse<T>>,
commands: impl IntoIterator<Item = StorageCommand<T>>
) -> RehydrationTaskState<T>
fn send_response(
&mut self,
location: ClusterReplicaLocation,
client: Partitioned<StorageGrpcClient, StorageCommand<T>, StorageResponse<T>>,
response: Result<StorageResponse<T>, Error>
) -> RehydrationTaskState<T>
fn absorb_command(&mut self, command: &StorageCommand<T>)
fn absorb_response(
&mut self,
response: StorageResponse<T>
) -> Option<StorageResponse<T>>
Auto Trait Implementations§
impl<T> !RefUnwindSafe for RehydrationTask<T>
impl<T> Send for RehydrationTask<T>where
T: Send,
impl<T> Sync for RehydrationTask<T>where
T: Send + Sync,
impl<T> Unpin for RehydrationTask<T>
impl<T> !UnwindSafe for RehydrationTask<T>
Blanket Implementations§
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
source§impl<T> Pointable for T
impl<T> Pointable 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
.