sui_indexer_alt_framework/pipeline/concurrent/pruner.rs
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 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
use std::{collections::BTreeMap, sync::Arc};
use futures::stream::FuturesUnordered;
use futures::StreamExt;
use tokio::{
sync::Semaphore,
task::JoinHandle,
time::{interval, MissedTickBehavior},
};
use tokio_util::sync::CancellationToken;
use tracing::{debug, error, info, warn};
use crate::{
metrics::IndexerMetrics,
pipeline::logging::{LoggerWatermark, WatermarkLogger},
store::{Connection, Store},
};
use super::{Handler, PrunerConfig};
#[derive(Default)]
struct PendingRanges {
/// Maps from `from` to `to_exclusive` for all the ranges that are ready to be pruned.
ranges: BTreeMap<u64, u64>,
/// The last range that has been scheduled for pruning.
last_scheduled_range: Option<(u64, u64)>,
}
impl PendingRanges {
/// Schedule a new range to be pruned.
/// Using the last scheduled range to avoid double pruning of the same range.
/// This is important because double pruning will not always work since pruning
/// may not be idempotent for some pipelines.
/// For instance, if handler holds processed data needed for pruning,
/// the pruning step may remove those data once done.
fn schedule(&mut self, mut from: u64, to_exclusive: u64) {
let last_scheduled_range = self.last_scheduled_range.unwrap_or((0, 0));
// If the end of the last scheduled range is greater than the end of the new range,
// it means the entire new range was already scheduled before.
if to_exclusive <= last_scheduled_range.1 {
return;
}
// Otherwise, we make sure the new range starts after the last scheduled range.
from = from.max(last_scheduled_range.1);
self.ranges.insert(from, to_exclusive);
self.last_scheduled_range = Some((from, to_exclusive));
}
fn len(&self) -> usize {
self.ranges.len()
}
fn iter(&self) -> impl Iterator<Item = (u64, u64)> + '_ {
self.ranges
.iter()
.map(|(from, to_exclusive)| (*from, *to_exclusive))
}
/// Remove the range from the pending_prune_ranges.
fn remove(&mut self, from: &u64) {
self.ranges.remove(from).unwrap();
}
/// Returns the current pruner_hi watermark, i.e. the first checkpoint that has not yet been pruned.
/// This will be the first key in the pending_prune_ranges map.
/// If the map is empty, then it is the last checkpoint that has been scheduled for pruning.
fn get_pruner_hi(&self) -> u64 {
self.ranges.keys().next().cloned().unwrap_or(
self.last_scheduled_range
.map(|(_, t)| t)
// get_pruner_hi will generally not be called until we have scheduled something.
// But return 0 just in case we called it earlier.
.unwrap_or_default(),
)
}
}
/// The pruner task is responsible for deleting old data from the database. It will periodically
/// check the `watermarks` table to see if there is any data that should be pruned between the
/// `pruner_hi` (inclusive), and `reader_lo` (exclusive) checkpoints. This task will also provide a
/// mapping of the pruned checkpoints to their corresponding epoch and tx, which the handler can
/// then use to delete the corresponding data from the database.
///
/// To ensure that the pruner does not interfere with reads that are still in flight, it respects
/// the watermark's `pruner_timestamp`, which records the time that `reader_lo` was last updated.
/// The task will not prune data until at least `config.delay()` has passed since `pruner_timestamp`
/// to give in-flight reads time to land.
///
/// The task regularly traces its progress, outputting at a higher log level every
/// [LOUD_WATERMARK_UPDATE_INTERVAL]-many checkpoints.
///
/// The task will shutdown if the `cancel` token is signalled. If the `config` is `None`, the task
/// will shutdown immediately.
pub(super) fn pruner<H: Handler + Send + Sync + 'static>(
handler: Arc<H>,
config: Option<PrunerConfig>,
store: H::Store,
metrics: Arc<IndexerMetrics>,
cancel: CancellationToken,
) -> JoinHandle<()> {
tokio::spawn(async move {
let Some(config) = config else {
info!(pipeline = H::NAME, "Skipping pruner task");
return;
};
info!(
pipeline = H::NAME,
"Starting pruner with config: {:?}", config
);
// The pruner can pause for a while, waiting for the delay imposed by the
// `pruner_timestamp` to expire. In that case, the period between ticks should not be
// compressed to make up for missed ticks.
let mut poll = interval(config.interval());
poll.set_missed_tick_behavior(MissedTickBehavior::Delay);
// The pruner task will periodically output a log message at a higher log level to
// demonstrate that it is making progress.
let mut logger = WatermarkLogger::new("pruner", LoggerWatermark::default());
// Maintains the list of chunks that are ready to be pruned but not yet pruned.
// This map can contain ranges that were attempted to be pruned in previous iterations,
// but failed due to errors.
let mut pending_prune_ranges = PendingRanges::default();
loop {
// (1) Get the latest pruning bounds from the database.
let mut watermark = tokio::select! {
_ = cancel.cancelled() => {
info!(pipeline = H::NAME, "Shutdown received");
break;
}
_ = poll.tick() => {
let guard = metrics
.watermark_pruner_read_latency
.with_label_values(&[H::NAME])
.start_timer();
let Ok(mut conn) = store.connect().await else {
warn!(pipeline = H::NAME, "Pruner failed to connect, while fetching watermark");
continue;
};
match conn.pruner_watermark(H::NAME, config.delay()).await {
Ok(Some(current)) => {
guard.stop_and_record();
current
}
Ok(None) => {
guard.stop_and_record();
warn!(pipeline = H::NAME, "No watermark for pipeline, skipping");
continue;
}
Err(e) => {
guard.stop_and_record();
warn!(pipeline = H::NAME, "Failed to get watermark: {e}");
continue;
}
}
}
};
// (2) Wait until this information can be acted upon.
if let Some(wait_for) = watermark.wait_for_ms() {
debug!(pipeline = H::NAME, ?wait_for, "Waiting to prune");
tokio::select! {
_ = tokio::time::sleep(wait_for) => {}
_ = cancel.cancelled() => {
info!(pipeline = H::NAME, "Shutdown received");
break;
}
}
}
// Tracks the current highest `pruner_hi` not yet written to db. This is updated as
// chunks complete.
let mut highest_pruned = watermark.pruner_hi;
// Tracks the `pruner_hi` that has been written to the db.
let mut highest_watermarked = watermark.pruner_hi;
// (3) Collect all the new chunks that are ready to be pruned.
// This will also advance the watermark.
while let Some((from, to_exclusive)) = watermark.next_chunk(config.max_chunk_size) {
pending_prune_ranges.schedule(from, to_exclusive);
}
debug!(
pipeline = H::NAME,
"Number of chunks to prune: {}",
pending_prune_ranges.len()
);
// (3) Prune chunk by chunk to avoid the task waiting on a long-running database
// transaction, between tests for cancellation.
// Spawn all tasks in parallel, but limit the number of concurrent tasks.
let semaphore = Arc::new(Semaphore::new(config.prune_concurrency as usize));
let mut tasks = FuturesUnordered::new();
for (from, to_exclusive) in pending_prune_ranges.iter() {
let semaphore = semaphore.clone();
let cancel = cancel.child_token();
let metrics = metrics.clone();
let handler = handler.clone();
let db = store.clone();
tasks.push(tokio::spawn(async move {
let _permit = tokio::select! {
permit = semaphore.acquire() => {
permit.unwrap()
}
_ = cancel.cancelled() => {
return ((from, to_exclusive), Err(anyhow::anyhow!("Cancelled")));
}
};
let result = prune_task_impl(metrics, db, handler, from, to_exclusive).await;
((from, to_exclusive), result)
}));
}
// (4) Wait for all tasks to finish. For each task, if it succeeds, remove the range
// from the pending_prune_ranges. Otherwise the range will remain in the map and will be
// retried in the next iteration. Update the highest_pruned watermark if the task
// succeeds in metrics and in db, to minimize redundant pruner work if the pipeline is
// restarted.
while let Some(r) = tasks.next().await {
let ((from, to_exclusive), result) = r.unwrap();
match result {
Ok(()) => {
pending_prune_ranges.remove(&from);
let pruner_hi = pending_prune_ranges.get_pruner_hi();
highest_pruned = highest_pruned.max(pruner_hi);
}
Err(e) => {
error!(
pipeline = H::NAME,
"Failed to prune data for range: {from} to {to_exclusive}: {e}"
);
}
}
if highest_pruned > highest_watermarked {
metrics
.watermark_pruner_hi
.with_label_values(&[H::NAME])
.set(highest_pruned as i64);
let guard = metrics
.watermark_pruner_write_latency
.with_label_values(&[H::NAME])
.start_timer();
let Ok(mut conn) = store.connect().await else {
warn!(
pipeline = H::NAME,
"Pruner failed to connect while updating watermark"
);
continue;
};
match conn.set_pruner_watermark(H::NAME, highest_pruned).await {
Err(e) => {
let elapsed = guard.stop_and_record();
error!(
pipeline = H::NAME,
elapsed_ms = elapsed * 1000.0,
"Failed to update pruner watermark: {e}"
)
}
Ok(true) => {
highest_watermarked = highest_pruned;
let elapsed = guard.stop_and_record();
logger.log::<H>(
LoggerWatermark::checkpoint(highest_watermarked),
elapsed,
);
metrics
.watermark_pruner_hi_in_db
.with_label_values(&[H::NAME])
.set(highest_watermarked as i64);
}
Ok(false) => {}
}
}
}
}
info!(pipeline = H::NAME, "Stopping pruner");
})
}
// TODO (wlmyng): non-pg store - requires conn too
async fn prune_task_impl<H: Handler + Send + Sync + 'static>(
metrics: Arc<IndexerMetrics>,
db: H::Store,
handler: Arc<H>,
from: u64,
to_exclusive: u64,
) -> Result<(), anyhow::Error> {
metrics
.total_pruner_chunks_attempted
.with_label_values(&[H::NAME])
.inc();
let guard = metrics
.pruner_delete_latency
.with_label_values(&[H::NAME])
.start_timer();
let mut conn = db.connect().await?;
debug!(pipeline = H::NAME, "Pruning from {from} to {to_exclusive}");
let affected = match handler.prune(from, to_exclusive, &mut conn).await {
Ok(affected) => {
guard.stop_and_record();
affected
}
Err(e) => {
guard.stop_and_record();
return Err(e);
}
};
metrics
.total_pruner_chunks_deleted
.with_label_values(&[H::NAME])
.inc();
metrics
.total_pruner_rows_deleted
.with_label_values(&[H::NAME])
.inc_by(affected as u64);
Ok(())
}