1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
// Copyright Materialize, Inc. and contributors. All rights reserved.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0.
//! A client for replicas of a compute instance.
use std::sync::Arc;
use std::time::Duration;
use anyhow::bail;
use mz_build_info::BuildInfo;
use mz_cluster_client::client::{ClusterReplicaLocation, ClusterStartupEpoch, TimelyConfig};
use mz_compute_types::dyncfgs::ENABLE_COMPUTE_REPLICA_EXPIRATION;
use mz_dyncfg::ConfigSet;
use mz_ore::channel::InstrumentedUnboundedSender;
use mz_ore::retry::Retry;
use mz_ore::task::AbortOnDropHandle;
use mz_service::client::GenericClient;
use mz_service::params::GrpcClientParameters;
use tokio::select;
use tokio::sync::mpsc::error::SendError;
use tokio::sync::mpsc::{unbounded_channel, UnboundedReceiver, UnboundedSender};
use tracing::{debug, info, trace, warn};
use crate::controller::instance::ReplicaResponse;
use crate::controller::sequential_hydration::SequentialHydration;
use crate::controller::{ComputeControllerTimestamp, ReplicaId};
use crate::logging::LoggingConfig;
use crate::metrics::IntCounter;
use crate::metrics::ReplicaMetrics;
use crate::protocol::command::{ComputeCommand, InstanceConfig};
use crate::protocol::response::ComputeResponse;
use crate::service::{ComputeClient, ComputeGrpcClient};
type Client<T> = SequentialHydration<T>;
/// Replica-specific configuration.
#[derive(Clone, Debug)]
pub(super) struct ReplicaConfig {
pub location: ClusterReplicaLocation,
pub logging: LoggingConfig,
pub arrangement_exert_proportionality: u32,
pub grpc_client: GrpcClientParameters,
/// The offset to use for replica expiration, if any.
pub expiration_offset: Option<Duration>,
}
/// A client for a replica task.
#[derive(Debug)]
pub(super) struct ReplicaClient<T> {
/// A sender for commands for the replica.
command_tx: UnboundedSender<ComputeCommand<T>>,
/// A handle to the task that aborts it when the replica is dropped.
///
/// If the task is finished, the replica has failed and needs rehydration.
task: AbortOnDropHandle<()>,
/// Replica metrics.
metrics: ReplicaMetrics,
}
impl<T> ReplicaClient<T>
where
T: ComputeControllerTimestamp,
ComputeGrpcClient: ComputeClient<T>,
{
pub(super) fn spawn(
id: ReplicaId,
build_info: &'static BuildInfo,
config: ReplicaConfig,
epoch: ClusterStartupEpoch,
metrics: ReplicaMetrics,
dyncfg: Arc<ConfigSet>,
response_tx: InstrumentedUnboundedSender<ReplicaResponse<T>, IntCounter>,
) -> Self {
// Launch a task to handle communication with the replica
// asynchronously. This isolates the main controller thread from
// the replica.
let (command_tx, command_rx) = unbounded_channel();
let task = mz_ore::task::spawn(
|| format!("active-replication-replica-{id}"),
ReplicaTask {
replica_id: id,
build_info,
config: config.clone(),
command_rx,
response_tx,
epoch,
metrics: metrics.clone(),
dyncfg,
}
.run(),
);
Self {
command_tx,
task: task.abort_on_drop(),
metrics,
}
}
}
impl<T> ReplicaClient<T> {
/// Sends a command to this replica.
pub(super) fn send(
&self,
command: ComputeCommand<T>,
) -> Result<(), SendError<ComputeCommand<T>>> {
self.command_tx.send(command).map(|r| {
self.metrics.inner.command_queue_size.inc();
r
})
}
/// Determine if the replica task has failed.
pub(super) fn is_failed(&self) -> bool {
self.task.is_finished()
}
}
/// Configuration for `replica_task`.
struct ReplicaTask<T> {
/// The ID of the replica.
replica_id: ReplicaId,
/// Replica configuration.
config: ReplicaConfig,
/// The build information for this process.
build_info: &'static BuildInfo,
/// A channel upon which commands intended for the replica are delivered.
command_rx: UnboundedReceiver<ComputeCommand<T>>,
/// A channel upon which responses from the replica are delivered.
response_tx: InstrumentedUnboundedSender<ReplicaResponse<T>, IntCounter>,
/// A number (technically, pair of numbers) identifying this incarnation of the replica.
/// The semantics of this don't matter, except that it must strictly increase.
epoch: ClusterStartupEpoch,
/// Replica metrics.
metrics: ReplicaMetrics,
/// Dynamic system configuration.
dyncfg: Arc<ConfigSet>,
}
impl<T> ReplicaTask<T>
where
T: ComputeControllerTimestamp,
ComputeGrpcClient: ComputeClient<T>,
{
/// Asynchronously forwards commands to and responses from a single replica.
async fn run(self) {
let replica_id = self.replica_id;
info!(replica = ?replica_id, "starting replica task");
let client = self.connect().await;
match self.run_message_loop(client).await {
Ok(()) => info!(replica = ?replica_id, "stopped replica task"),
Err(error) => warn!(replica = ?replica_id, "replica task failed: {error:#}"),
}
}
/// Connects to the replica.
///
/// The connection is retried forever (with backoff) and this method returns only after
/// a connection was successfully established.
async fn connect(&self) -> Client<T> {
Retry::default()
.clamp_backoff(Duration::from_secs(1))
.retry_async(|state| {
let addrs = &self.config.location.ctl_addrs;
let dests = addrs
.iter()
.map(|addr| (addr.clone(), self.metrics.clone()))
.collect();
let version = self.build_info.semver_version();
let client_params = &self.config.grpc_client;
async move {
match ComputeGrpcClient::connect_partitioned(dests, version, client_params)
.await
{
Ok(client) => {
let dyncfg = Arc::clone(&self.dyncfg);
let metrics = self.metrics.clone();
Ok(SequentialHydration::new(client, dyncfg, metrics))
}
Err(e) => {
if state.i >= mz_service::retry::INFO_MIN_RETRIES {
info!(
replica = ?self.replica_id,
"error connecting to replica, retrying in {:?}: {e:#}",
state.next_backoff.unwrap(),
);
} else {
debug!(
replica = ?self.replica_id,
"error connecting to replica, retrying in {:?}: {e:#}",
state.next_backoff.unwrap()
);
}
Err(e)
}
}
}
})
.await
.expect("retry retries forever")
}
/// Runs the message loop.
///
/// Returns (with an `Err`) if it encounters an error condition (e.g. the replica disconnects).
/// If no error condition is encountered, the task runs until the controller disconnects from
/// the command channel, or the task is dropped.
async fn run_message_loop(mut self, mut client: Client<T>) -> Result<(), anyhow::Error>
where
T: ComputeControllerTimestamp,
ComputeGrpcClient: ComputeClient<T>,
{
let id = self.replica_id;
let incarnation = self.epoch.replica();
loop {
select! {
// Command from controller to forward to replica.
command = self.command_rx.recv() => {
let Some(mut command) = command else {
// Controller is no longer interested in this replica. Shut down.
break;
};
self.specialize_command(&mut command);
self.observe_command(&command);
client.send(command).await?;
},
// Response from replica to forward to controller.
response = client.recv() => {
let Some(response) = response? else {
bail!("replica unexpectedly gracefully terminated connection");
};
self.observe_response(&response);
if self.response_tx.send((id, incarnation, response)).is_err() {
// Controller is no longer interested in this replica. Shut down.
break;
}
}
}
}
Ok(())
}
/// Specialize a command for the given replica configuration.
///
/// Most `ComputeCommand`s are independent of the target replica, but some
/// contain replica-specific fields that must be adjusted before sending.
fn specialize_command(&self, command: &mut ComputeCommand<T>) {
match command {
ComputeCommand::CreateTimely { config, epoch } => {
*config = TimelyConfig {
workers: self.config.location.workers,
process: 0,
addresses: self.config.location.dataflow_addrs.clone(),
arrangement_exert_proportionality: self
.config
.arrangement_exert_proportionality,
};
*epoch = self.epoch;
}
ComputeCommand::CreateInstance(InstanceConfig {
logging,
expiration_offset,
}) => {
*logging = self.config.logging.clone();
if ENABLE_COMPUTE_REPLICA_EXPIRATION.get(&self.dyncfg) {
*expiration_offset = self.config.expiration_offset;
}
}
_ => {}
}
}
/// Update task state according to an observed command.
#[mz_ore::instrument(level = "debug")]
fn observe_command(&mut self, command: &ComputeCommand<T>) {
if let ComputeCommand::Peek(peek) = command {
peek.otel_ctx.attach_as_parent();
}
trace!(
replica = ?self.replica_id,
command = ?command,
"sending command to replica",
);
self.metrics.inner.command_queue_size.dec();
}
/// Update task state according to an observed response.
#[mz_ore::instrument(level = "debug")]
fn observe_response(&mut self, response: &ComputeResponse<T>) {
if let ComputeResponse::PeekResponse(_, _, otel_ctx) = response {
otel_ctx.attach_as_parent();
}
trace!(
replica = ?self.replica_id,
response = ?response,
"received response from replica",
);
}
}