Skip to content

Commit

Permalink
feat(cdc): add cdc backfill grafana metrics (#13777)
Browse files Browse the repository at this point in the history
  • Loading branch information
StrikeW authored and StrikeW committed Dec 4, 2023
1 parent 1bb99bb commit 41f965e
Show file tree
Hide file tree
Showing 7 changed files with 50 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docker/dashboards/risingwave-dev-dashboard.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docker/dashboards/risingwave-user-dashboard.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions grafana/risingwave-dev-dashboard.dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -827,6 +827,28 @@ def section_streaming(outer_panels):
),
],
),
panels.timeseries_rowsps(
"CDC Backfill Snapshot Read Throughput(rows)",
"Total number of rows that have been read from the cdc backfill snapshot",
[
panels.target(
f"rate({table_metric('stream_cdc_backfill_snapshot_read_row_count')}[$__rate_interval])",
"table_id={{table_id}} actor={{actor_id}} @ {{%s}}"
% NODE_LABEL,
),
],
),
panels.timeseries_rowsps(
"CDC Backfill Upstream Throughput(rows)",
"Total number of rows that have been output from the cdc backfill upstream",
[
panels.target(
f"rate({table_metric('stream_cdc_backfill_upstream_output_row_count')}[$__rate_interval])",
"table_id={{table_id}} actor={{actor_id}} @ {{%s}}"
% NODE_LABEL,
),
],
),
panels.timeseries_count(
"Barrier Number",
"The number of barriers that have been ingested but not completely processed. This metric reflects the "
Expand Down
2 changes: 1 addition & 1 deletion grafana/risingwave-dev-dashboard.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion grafana/risingwave-user-dashboard.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/stream/src/executor/backfill/cdc/cdc_backfill.rs
Original file line number Diff line number Diff line change
Expand Up @@ -337,15 +337,15 @@ impl<S: StateStore> CdcBackfillExecutor<S> {
}

self.metrics
.backfill_snapshot_read_row_count
.cdc_backfill_snapshot_read_row_count
.with_label_values(&[
upstream_table_id.to_string().as_str(),
self.actor_ctx.id.to_string().as_str(),
])
.inc_by(cur_barrier_snapshot_processed_rows);

self.metrics
.backfill_upstream_output_row_count
.cdc_backfill_upstream_output_row_count
.with_label_values(&[
upstream_table_id.to_string().as_str(),
self.actor_ctx.id.to_string().as_str(),
Expand Down
22 changes: 22 additions & 0 deletions src/stream/src/executor/monitor/streaming_stats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,10 @@ pub struct StreamingMetrics {
pub arrangement_backfill_snapshot_read_row_count: GenericCounterVec<AtomicU64>,
pub arrangement_backfill_upstream_output_row_count: GenericCounterVec<AtomicU64>,

// CDC Backfill
pub cdc_backfill_snapshot_read_row_count: GenericCounterVec<AtomicU64>,
pub cdc_backfill_upstream_output_row_count: GenericCounterVec<AtomicU64>,

// Over Window
pub over_window_cached_entry_count: GenericGaugeVec<AtomicI64>,
pub over_window_cache_lookup_count: GenericCounterVec<AtomicU64>,
Expand Down Expand Up @@ -684,6 +688,22 @@ impl StreamingMetrics {
)
.unwrap();

let cdc_backfill_snapshot_read_row_count = register_int_counter_vec_with_registry!(
"stream_cdc_backfill_snapshot_read_row_count",
"Total number of rows that have been read from the cdc_backfill snapshot",
&["table_id", "actor_id"],
registry
)
.unwrap();

let cdc_backfill_upstream_output_row_count = register_int_counter_vec_with_registry!(
"stream_cdc_backfill_upstream_output_row_count",
"Total number of rows that have been output from the cdc_backfill upstream",
&["table_id", "actor_id"],
registry
)
.unwrap();

let over_window_cached_entry_count = register_int_gauge_vec_with_registry!(
"stream_over_window_cached_entry_count",
"Total entry (partition) count in over window executor cache",
Expand Down Expand Up @@ -980,6 +1000,8 @@ impl StreamingMetrics {
backfill_upstream_output_row_count,
arrangement_backfill_snapshot_read_row_count,
arrangement_backfill_upstream_output_row_count,
cdc_backfill_snapshot_read_row_count,
cdc_backfill_upstream_output_row_count,
over_window_cached_entry_count,
over_window_cache_lookup_count,
over_window_cache_miss_count,
Expand Down

0 comments on commit 41f965e

Please sign in to comment.