pub struct ComputeController<T> {
    instances: BTreeMap<ComputeInstanceId, Instance<T>>,
    build_info: &'static BuildInfo,
    initialized: bool,
    config: ComputeParameters,
    stashed_response: Option<(ComputeInstanceId, ReplicaId, ComputeResponse<T>)>,
    replica_heartbeats: BTreeMap<ReplicaId, DateTime<Utc>>,
    replica_metrics: BTreeMap<ReplicaId, Vec<ServiceProcessMetrics>>,
    envd_epoch: NonZeroI64,
    stats_update_ticker: Interval,
    stats_update_pending: bool,
    metrics: ComputeControllerMetrics,
}
Expand description

A controller for the compute layer.

Fields§

§instances: BTreeMap<ComputeInstanceId, Instance<T>>§build_info: &'static BuildInfo§initialized: bool

Set to true once initialization_complete has been called.

§config: ComputeParameters

Compute configuration to apply to new instances.

§stashed_response: Option<(ComputeInstanceId, ReplicaId, ComputeResponse<T>)>

A response to handle on the next call to ActiveComputeController::process.

§replica_heartbeats: BTreeMap<ReplicaId, DateTime<Utc>>

Times we have last received responses from replicas.

§replica_metrics: BTreeMap<ReplicaId, Vec<ServiceProcessMetrics>>§envd_epoch: NonZeroI64

A number that increases on every environmentd restart.

§stats_update_ticker: Interval

Periodic notification to produce a ReplicaWriteFrontiers response.

§stats_update_pending: bool

Set to true if process should produce a ReplicaWriteFrontiers next.

§metrics: ComputeControllerMetrics

The compute controller metrics

Implementations§

Construct a new ComputeController.

Return a reference to the indicated compute instance.

Return a mutable reference to the indicated compute instance.

Return a read-only handle to the indicated compute instance.

Return a read-only handle to the indicated collection.

Acquire an ActiveComputeController by supplying a storage connection.

Create a compute instance.

Remove a compute instance.

Panics

Panics if the identified instance still has active replicas.

Update compute configuration.

Mark the end of any initialization commands.

The implementor may wait for this method to be called before implementing prior commands, and so it is important for a user to invoke this method as soon as it is comfortable. This method can be invoked immediately, at the potential expense of performance.

Wait until the controller is ready to do some processing.

This method may block for an arbitrarily long time.

When the method returns, the caller should call ActiveComputeController::process.

This method is cancellation safe.

Assign a target replica to the identified subscribe.

If a subscribe has a target replica assigned, only subscribe responses sent by that replica are considered.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
Attaches the current Context to this type, returning a WithContext wrapper. Read more
Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Wrap the input message T in a tonic::Request
The alignment of pointer.
The type for initializers.
Initializes a with the given initializer. Read more
Dereferences the given pointer. Read more
Mutably dereferences the given pointer. Read more
Drops the object pointed to by the given pointer. Read more
Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more