sui_indexer/handlers/
mod.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
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

use std::collections::BTreeMap;

use async_trait::async_trait;
use futures::{FutureExt, StreamExt};

use serde::{Deserialize, Serialize};
use sui_types::full_checkpoint_content::CheckpointData;
use tokio_util::sync::CancellationToken;

use crate::{
    errors::IndexerError,
    models::{
        display::StoredDisplay,
        epoch::{EndOfEpochUpdate, StartOfEpochUpdate},
        obj_indices::StoredObjectVersion,
    },
    types::{
        EventIndex, IndexedCheckpoint, IndexedDeletedObject, IndexedEvent, IndexedObject,
        IndexedPackage, IndexedTransaction, IndexerResult, TxIndex,
    },
};

pub mod checkpoint_handler;
pub mod committer;
pub mod objects_snapshot_handler;
pub mod pruner;
pub mod tx_processor;

pub(crate) const CHECKPOINT_COMMIT_BATCH_SIZE: usize = 100;
pub(crate) const UNPROCESSED_CHECKPOINT_SIZE_LIMIT: usize = 1000;

#[derive(Debug)]
pub struct CheckpointDataToCommit {
    pub checkpoint: IndexedCheckpoint,
    pub transactions: Vec<IndexedTransaction>,
    pub events: Vec<IndexedEvent>,
    pub event_indices: Vec<EventIndex>,
    pub tx_indices: Vec<TxIndex>,
    pub display_updates: BTreeMap<String, StoredDisplay>,
    pub object_changes: TransactionObjectChangesToCommit,
    pub object_history_changes: TransactionObjectChangesToCommit,
    pub object_versions: Vec<StoredObjectVersion>,
    pub packages: Vec<IndexedPackage>,
    pub epoch: Option<EpochToCommit>,
}

#[derive(Clone, Debug)]
pub struct TransactionObjectChangesToCommit {
    pub changed_objects: Vec<IndexedObject>,
    pub deleted_objects: Vec<IndexedDeletedObject>,
}

#[derive(Clone, Debug)]
pub struct EpochToCommit {
    pub last_epoch: Option<EndOfEpochUpdate>,
    pub new_epoch: StartOfEpochUpdate,
}

impl EpochToCommit {
    pub fn new_epoch_id(&self) -> u64 {
        self.new_epoch.epoch as u64
    }

    pub fn new_epoch_first_checkpoint_id(&self) -> u64 {
        self.new_epoch.first_checkpoint_id as u64
    }

    pub fn last_epoch_total_transactions(&self) -> Option<u64> {
        self.last_epoch
            .as_ref()
            .map(|e| e.epoch_total_transactions as u64)
    }

    pub fn new_epoch_first_tx_sequence_number(&self) -> u64 {
        self.new_epoch.first_tx_sequence_number as u64
    }
}

pub struct CommonHandler<T> {
    handler: Box<dyn Handler<T>>,
}

impl<T> CommonHandler<T> {
    pub fn new(handler: Box<dyn Handler<T>>) -> Self {
        Self { handler }
    }

    async fn start_transform_and_load(
        &self,
        cp_receiver: mysten_metrics::metered_channel::Receiver<(CommitterWatermark, T)>,
        cancel: CancellationToken,
        start_checkpoint: u64,
        end_checkpoint_opt: Option<u64>,
    ) -> IndexerResult<()> {
        let checkpoint_commit_batch_size = std::env::var("CHECKPOINT_COMMIT_BATCH_SIZE")
            .unwrap_or(CHECKPOINT_COMMIT_BATCH_SIZE.to_string())
            .parse::<usize>()
            .unwrap();
        let mut stream = mysten_metrics::metered_channel::ReceiverStream::new(cp_receiver)
            .ready_chunks(checkpoint_commit_batch_size);

        // Mapping of ordered checkpoint data to ensure that we process them in order. The key is
        // just the checkpoint sequence number, and the tuple is (CommitterWatermark, T).
        let mut unprocessed: BTreeMap<u64, (CommitterWatermark, _)> = BTreeMap::new();
        let mut tuple_batch = vec![];
        let mut next_cp_to_process = start_checkpoint;

        loop {
            if cancel.is_cancelled() {
                return Ok(());
            }

            // Try to fetch new data tuple from the stream
            if unprocessed.len() >= UNPROCESSED_CHECKPOINT_SIZE_LIMIT {
                tracing::info!(
                    "Unprocessed checkpoint size reached limit {}, skip reading from stream...",
                    UNPROCESSED_CHECKPOINT_SIZE_LIMIT
                );
            } else {
                // Try to fetch new data tuple from the stream
                match stream.next().now_or_never() {
                    Some(Some(tuple_chunk)) => {
                        if cancel.is_cancelled() {
                            return Ok(());
                        }
                        for tuple in tuple_chunk {
                            unprocessed.insert(tuple.0.checkpoint_hi_inclusive, tuple);
                        }
                    }
                    Some(None) => break, // Stream has ended
                    None => {}           // No new data tuple available right now
                }
            }

            // Process unprocessed checkpoints, even no new checkpoints from stream
            let checkpoint_lag_limiter = self.handler.get_max_committable_checkpoint().await?;
            let max_commitable_cp = std::cmp::min(
                checkpoint_lag_limiter,
                end_checkpoint_opt.unwrap_or(u64::MAX),
            );
            // Stop pushing to tuple_batch if we've reached the end checkpoint.
            while next_cp_to_process <= max_commitable_cp {
                if let Some(data_tuple) = unprocessed.remove(&next_cp_to_process) {
                    tuple_batch.push(data_tuple);
                    next_cp_to_process += 1;
                } else {
                    break;
                }
            }

            if !tuple_batch.is_empty() {
                let committer_watermark = tuple_batch.last().unwrap().0;
                let batch = tuple_batch.into_iter().map(|t| t.1).collect();
                self.handler.load(batch).await.map_err(|e| {
                    IndexerError::PostgresWriteError(format!(
                        "Failed to load transformed data into DB for handler {}: {}",
                        self.handler.name(),
                        e
                    ))
                })?;
                self.handler.set_watermark_hi(committer_watermark).await?;
                tuple_batch = vec![];
            }

            if let Some(end_checkpoint) = end_checkpoint_opt {
                if next_cp_to_process > end_checkpoint {
                    tracing::info!(
                        "Reached end checkpoint, stopping handler {}...",
                        self.handler.name()
                    );
                    return Ok(());
                }
            }
        }
        Err(IndexerError::ChannelClosed(format!(
            "Checkpoint channel is closed unexpectedly for handler {}",
            self.handler.name()
        )))
    }
}

#[async_trait]
pub trait Handler<T>: Send + Sync {
    /// return handler name
    fn name(&self) -> String;

    /// commit batch of transformed data to DB
    async fn load(&self, batch: Vec<T>) -> IndexerResult<()>;

    /// read high watermark of the table DB
    async fn get_watermark_hi(&self) -> IndexerResult<Option<u64>>;

    /// Updates the relevant entries on the `watermarks` table with the full `CommitterWatermark`,
    /// which tracks the latest epoch, cp, and tx sequence number of the committed batch.
    async fn set_watermark_hi(&self, watermark: CommitterWatermark) -> IndexerResult<()>;

    /// By default, return u64::MAX, which means no extra waiting is needed before commiting;
    /// get max committable checkpoint, for handlers that want to wait for some condition before commiting,
    /// one use-case is the objects snapshot handler,
    /// which waits for the lag between snapshot and latest checkpoint to reach a certain threshold.
    async fn get_max_committable_checkpoint(&self) -> IndexerResult<u64> {
        Ok(u64::MAX)
    }
}

/// The indexer writer operates on checkpoint data, which contains information on the current epoch,
/// checkpoint, and transaction. These three numbers form the watermark upper bound for each
/// committed table. The reader and pruner are responsible for determining which of the three units
/// will be used for a particular table.
#[derive(Clone, Copy, Ord, PartialOrd, Eq, PartialEq)]
pub struct CommitterWatermark {
    pub epoch_hi_inclusive: u64,
    pub checkpoint_hi_inclusive: u64,
    pub tx_hi: u64,
}

impl From<&IndexedCheckpoint> for CommitterWatermark {
    fn from(checkpoint: &IndexedCheckpoint) -> Self {
        Self {
            epoch_hi_inclusive: checkpoint.epoch,
            checkpoint_hi_inclusive: checkpoint.sequence_number,
            tx_hi: checkpoint.network_total_transactions,
        }
    }
}

impl From<&CheckpointData> for CommitterWatermark {
    fn from(checkpoint: &CheckpointData) -> Self {
        Self {
            epoch_hi_inclusive: checkpoint.checkpoint_summary.epoch,
            checkpoint_hi_inclusive: checkpoint.checkpoint_summary.sequence_number,
            tx_hi: checkpoint.checkpoint_summary.network_total_transactions,
        }
    }
}

/// Enum representing tables that the committer handler writes to.
#[derive(
    Debug,
    Eq,
    PartialEq,
    strum_macros::Display,
    strum_macros::EnumString,
    strum_macros::EnumIter,
    strum_macros::AsRefStr,
    Hash,
    Serialize,
    Deserialize,
    Clone,
)]
#[strum(serialize_all = "snake_case")]
#[serde(rename_all = "snake_case")]
pub enum CommitterTables {
    // Unpruned tables
    ChainIdentifier,
    Display,
    Epochs,
    FeatureFlags,
    FullObjectsHistory,
    Objects,
    ObjectsVersion,
    Packages,
    ProtocolConfigs,
    RawCheckpoints,

    // Prunable tables
    ObjectsHistory,
    Transactions,
    Events,

    EventEmitPackage,
    EventEmitModule,
    EventSenders,
    EventStructInstantiation,
    EventStructModule,
    EventStructName,
    EventStructPackage,

    TxAffectedAddresses,
    TxAffectedObjects,
    TxCallsPkg,
    TxCallsMod,
    TxCallsFun,
    TxChangedObjects,
    TxDigests,
    TxInputObjects,
    TxKinds,

    Checkpoints,
    PrunerCpWatermark,
}

/// Enum representing tables that the objects snapshot handler writes to.
#[derive(
    Debug,
    Eq,
    PartialEq,
    strum_macros::Display,
    strum_macros::EnumString,
    strum_macros::EnumIter,
    strum_macros::AsRefStr,
    Hash,
    Serialize,
    Deserialize,
    Clone,
)]
#[strum(serialize_all = "snake_case")]
#[serde(rename_all = "snake_case")]
pub enum ObjectsSnapshotHandlerTables {
    ObjectsSnapshot,
}