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
// 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.
//! Metrics for all things storage.
//!
//! The structure of this module is designed to make adding new metrics as easy as possible. The
//! structure and naming conventions are as follows:
//!
//! Metrics for X end up in the `x.rs` submodule, unless X fits into one of the existing
//! submodules. The struct `XMetricsDefs` defines the `CounterVec/GaugeVec/etc`'s that must be
//! registered with the `MetricsRegistry` to create new metrics. `XMetricsDefs` should be a
//! sub-field of `StorageMetrics` (or recursively a sub-field). `XMetricsDefs` has a
//! `register_with` function to create it using a `MetricsRegistry`.
//!
//! `XMetrics` contains the actual gauges/counters/etc that are created using `XMetricsDefs`.
//! Typically these are created with `new` functions that takes a `&XMetricsDefs`, a `GlobalId`,
//! and a worker id, but sometimes more complex schemes are used, for metrics that are globally
//! shared, or have some other shape to their labels.
//!
//! `StorageMetrics` is the main entry-point to this module, and for convenience, typically
//! provides a `get_x_metrics` to obtain an `XMetrics` struct. This is to prevent users from
//! needing to interact with metrics _definitions_ into the code that actually bumps those
//! metrics.
use std::sync::Arc;
use mz_ore::channel::{
instrumented_unbounded_channel, InstrumentedUnboundedReceiver, InstrumentedUnboundedSender,
};
use mz_ore::metrics::MetricsRegistry;
use mz_ore::metrics::{DeleteOnDropCounter, MetricVecExt};
use mz_repr::GlobalId;
use prometheus::core::AtomicU64;
use crate::statistics::{SinkStatisticsMetricDefs, SourceStatisticsMetricDefs};
use mz_storage_operators::metrics::BackpressureMetrics;
pub mod channel;
pub mod decode;
pub mod sink;
pub mod source;
pub mod upsert;
/// A top-level struct holding all various _definitions_ of all metrics
/// use by the `mz-storage` crate.
///
/// Created by registering it with a `MetricsRegistry`, it also provides helpers
/// to obtain various _instantiated_ time-series, either per-worker, shared globally,
/// or some more specific labeling scheme.
///
/// This struct can be cloned, and the various definitions are shared.
#[derive(Clone, Debug)]
pub struct StorageMetrics {
pub(crate) source_defs: source::SourceMetricDefs,
pub(crate) decode_defs: decode::DecodeMetricDefs,
pub(crate) upsert_defs: upsert::UpsertMetricDefs,
pub(crate) upsert_backpressure_defs: upsert::UpsertBackpressureMetricDefs,
pub(crate) sink_defs: sink::SinkMetricDefs,
// Defined in the `statistics` module, as they are kept in sync with
// user-facing data.
pub(crate) source_statistics: SourceStatisticsMetricDefs,
pub(crate) sink_statistics: SinkStatisticsMetricDefs,
}
impl StorageMetrics {
/// Register all metrics with the `MetricsRegistry`.
pub fn register_with(registry: &MetricsRegistry) -> Self {
Self {
source_defs: source::SourceMetricDefs::register_with(registry),
decode_defs: decode::DecodeMetricDefs::register_with(registry),
upsert_defs: upsert::UpsertMetricDefs::register_with(registry),
upsert_backpressure_defs: upsert::UpsertBackpressureMetricDefs::register_with(registry),
sink_defs: sink::SinkMetricDefs::register_with(registry),
source_statistics: SourceStatisticsMetricDefs::register_with(registry),
sink_statistics: SinkStatisticsMetricDefs::register_with(registry),
}
}
/// Get a `BackpressureMetrics` for the given id and worker id.
pub(crate) fn get_backpressure_metrics(
&self,
id: GlobalId,
index: usize,
) -> BackpressureMetrics {
BackpressureMetrics {
emitted_bytes: Arc::new(
self.upsert_backpressure_defs
.emitted_bytes
.get_delete_on_drop_metric(vec![id.to_string(), index.to_string()]),
),
last_backpressured_bytes: Arc::new(
self.upsert_backpressure_defs
.last_backpressured_bytes
.get_delete_on_drop_metric(vec![id.to_string(), index.to_string()]),
),
retired_bytes: Arc::new(
self.upsert_backpressure_defs
.retired_bytes
.get_delete_on_drop_metric(vec![id.to_string(), index.to_string()]),
),
}
}
/// Get an `UpsertMetrics` for the given id and worker id (and optional `BackpressureMetrics`).
pub(crate) fn get_upsert_metrics(
&self,
id: GlobalId,
worker_id: usize,
backpressure_metrics: Option<BackpressureMetrics>,
) -> upsert::UpsertMetrics {
upsert::UpsertMetrics::new(&self.upsert_defs, id, worker_id, backpressure_metrics)
}
/// Get a `SourcePersistSinkMetrics` for the given configuration.
pub(crate) fn get_source_persist_sink_metrics(
&self,
export_id: GlobalId,
primary_source_id: GlobalId,
worker_id: usize,
data_shard: &mz_persist_client::ShardId,
output_index: usize,
) -> source::SourcePersistSinkMetrics {
source::SourcePersistSinkMetrics::new(
&self.source_defs.source_defs,
export_id,
primary_source_id,
worker_id,
data_shard,
output_index,
)
}
/// Get a `SourceMetrics` for the given id and worker id.
pub(crate) fn get_source_metrics(
&self,
name: &str,
id: GlobalId,
worker_id: usize,
) -> source::SourceMetrics {
source::SourceMetrics::new(&self.source_defs.source_defs, name, id, worker_id)
}
/// Get a `PgMetrics` for the given id.
pub(crate) fn get_postgres_source_metrics(
&self,
id: GlobalId,
) -> source::postgres::PgSourceMetrics {
source::postgres::PgSourceMetrics::new(&self.source_defs.postgres_defs, id)
}
/// Get a `MySqlSourceMetrics` for the given id.
pub(crate) fn get_mysql_source_metrics(
&self,
id: GlobalId,
) -> source::mysql::MySqlSourceMetrics {
source::mysql::MySqlSourceMetrics::new(&self.source_defs.mysql_defs, id)
}
/// Get an `OffsetCommitMetrics` for the given id.
pub(crate) fn get_offset_commit_metrics(&self, id: GlobalId) -> source::OffsetCommitMetrics {
source::OffsetCommitMetrics::new(&self.source_defs.source_defs, id)
}
/// Get an `KafkaSourceMetrics` for the given configuration.
pub(crate) fn get_kafka_source_metrics(
&self,
ids: Vec<i32>,
topic: String,
source_id: GlobalId,
) -> source::kafka::KafkaSourceMetrics {
source::kafka::KafkaSourceMetrics::new(
&self.source_defs.kafka_source_defs,
ids,
topic,
source_id,
)
}
/// Get an `KafkaSinkMetrics` for the given configuration.
pub(crate) fn get_kafka_sink_metrics(
&self,
sink_id: GlobalId,
) -> sink::kafka::KafkaSinkMetrics {
sink::kafka::KafkaSinkMetrics::new(&self.sink_defs.kafka_defs, sink_id)
}
/// Produce an instrumented channel for use in the source pipeline.
pub(crate) fn get_instrumented_source_channel<T>(
&self,
id: GlobalId,
worker_id: usize,
worker_count: usize,
location: &str,
) -> (
InstrumentedUnboundedSender<T, DeleteOnDropCounter<'static, AtomicU64, Vec<String>>>,
InstrumentedUnboundedReceiver<T, DeleteOnDropCounter<'static, AtomicU64, Vec<String>>>,
) {
let sender_metric = self
.source_defs
.channel_metric_defs
.sends
.get_delete_on_drop_metric(vec![
id.to_string(),
worker_id.to_string(),
worker_count.to_string(),
location.to_string(),
]);
let recv_metric = self
.source_defs
.channel_metric_defs
.recvs
.get_delete_on_drop_metric(vec![
id.to_string(),
worker_id.to_string(),
worker_count.to_string(),
location.to_string(),
]);
instrumented_unbounded_channel(sender_metric, recv_metric)
}
}