pub enum ControllerResponse<T = Timestamp> {
PeekResponse(Uuid, PeekResponse, OpenTelemetryContext),
SubscribeResponse(GlobalId, SubscribeResponse<T>),
ComputeReplicaHeartbeat(ReplicaId, DateTime<Utc>),
ComputeReplicaMetrics(ReplicaId, Vec<ServiceProcessMetrics>),
ComputeReplicaWriteFrontiers(BTreeMap<ReplicaId, Vec<(GlobalId, T)>>),
}
Expand description
Responses that Controller
can produce.
Variants§
PeekResponse(Uuid, PeekResponse, OpenTelemetryContext)
The worker’s response to a specified (by connection id) peek.
Additionally, an OpenTelemetryContext
to forward trace information
back into coord. This allows coord traces to be children of work
done in compute!
SubscribeResponse(GlobalId, SubscribeResponse<T>)
The worker’s next response to a specified subscribe.
ComputeReplicaHeartbeat(ReplicaId, DateTime<Utc>)
Notification that we have received a message from the given compute replica at the given time.
ComputeReplicaMetrics(ReplicaId, Vec<ServiceProcessMetrics>)
Notification that new resource usage metrics are available for a given replica.
ComputeReplicaWriteFrontiers(BTreeMap<ReplicaId, Vec<(GlobalId, T)>>)
Notification that the write frontiers of the replicas have changed.
Trait Implementations§
source§impl<T: Clone> Clone for ControllerResponse<T>
impl<T: Clone> Clone for ControllerResponse<T>
source§fn clone(&self) -> ControllerResponse<T>
fn clone(&self) -> ControllerResponse<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 ControllerResponse<T>
impl<T: Debug> Debug for ControllerResponse<T>
source§impl<'de, T> Deserialize<'de> for ControllerResponse<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for ControllerResponse<T>where
T: Deserialize<'de>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<T> From<ComputeControllerResponse<T>> for ControllerResponse<T>
impl<T> From<ComputeControllerResponse<T>> for ControllerResponse<T>
source§fn from(r: ComputeControllerResponse<T>) -> ControllerResponse<T>
fn from(r: ComputeControllerResponse<T>) -> ControllerResponse<T>
Converts to this type from the input type.
Auto Trait Implementations§
impl<T> RefUnwindSafe for ControllerResponse<T>where
T: RefUnwindSafe,
impl<T> Send for ControllerResponse<T>where
T: Send,
impl<T> Sync for ControllerResponse<T>where
T: Sync,
impl<T> Unpin for ControllerResponse<T>where
T: Unpin,
impl<T> UnwindSafe for ControllerResponse<T>where
T: UnwindSafe + RefUnwindSafe,
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
.