sui_tool/db_tool/
db_dump.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
345
346
347
348
349
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

use anyhow::{anyhow, Ok};
use clap::{Parser, ValueEnum};
use comfy_table::{Cell, ContentArrangement, Row, Table};
use prometheus::Registry;
use std::collections::{BTreeMap, HashMap};
use std::path::PathBuf;
use std::str;
use std::sync::Arc;
use strum_macros::EnumString;
use sui_archival::reader::ArchiveReaderBalancer;
use sui_config::node::AuthorityStorePruningConfig;
use sui_core::authority::authority_per_epoch_store::AuthorityEpochTables;
use sui_core::authority::authority_store_pruner::{
    AuthorityStorePruner, AuthorityStorePruningMetrics, EPOCH_DURATION_MS_FOR_TESTING,
};
use sui_core::authority::authority_store_tables::AuthorityPerpetualTables;
use sui_core::authority::authority_store_types::{StoreData, StoreObject};
use sui_core::checkpoints::CheckpointStore;
use sui_core::epoch::committee_store::CommitteeStoreTables;
use sui_core::jsonrpc_index::IndexStoreTables;
use sui_core::rpc_index::RpcIndexStore;
use sui_types::base_types::{EpochId, ObjectID};
use tracing::info;
use typed_store::rocks::{default_db_options, MetricConf};
use typed_store::rocksdb::MultiThreaded;
use typed_store::traits::{Map, TableSummary};

#[derive(EnumString, Clone, Parser, Debug, ValueEnum)]
pub enum StoreName {
    Validator,
    Index,
    Epoch,
    // TODO: Add the new checkpoint v2 tables.
}
impl std::fmt::Display for StoreName {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        write!(f, "{:?}", self)
    }
}

pub fn list_tables(path: PathBuf) -> anyhow::Result<Vec<String>> {
    typed_store::rocksdb::DBWithThreadMode::<MultiThreaded>::list_cf(
        &default_db_options().options,
        path,
    )
    .map_err(|e| e.into())
    .map(|q| {
        q.iter()
            .filter_map(|s| {
                // The `default` table is not used
                if s != "default" {
                    Some(s.clone())
                } else {
                    None
                }
            })
            .collect()
    })
}

pub fn table_summary(
    store_name: StoreName,
    epoch: Option<EpochId>,
    db_path: PathBuf,
    table_name: &str,
) -> anyhow::Result<TableSummary> {
    match store_name {
        StoreName::Validator => {
            let epoch_tables = AuthorityEpochTables::describe_tables();
            if epoch_tables.contains_key(table_name) {
                let epoch = epoch.ok_or_else(|| anyhow!("--epoch is required"))?;
                AuthorityEpochTables::open_readonly(epoch, &db_path).table_summary(table_name)
            } else {
                AuthorityPerpetualTables::open_readonly(&db_path).table_summary(table_name)
            }
        }
        StoreName::Index => {
            IndexStoreTables::get_read_only_handle(db_path, None, None, MetricConf::default())
                .table_summary(table_name)
        }
        StoreName::Epoch => {
            CommitteeStoreTables::get_read_only_handle(db_path, None, None, MetricConf::default())
                .table_summary(table_name)
        }
    }
    .map_err(|err| anyhow!(err.to_string()))
}

pub fn print_table_metadata(
    store_name: StoreName,
    epoch: Option<EpochId>,
    db_path: PathBuf,
    table_name: &str,
) -> anyhow::Result<()> {
    let db = match store_name {
        StoreName::Validator => {
            let epoch_tables = AuthorityEpochTables::describe_tables();
            if epoch_tables.contains_key(table_name) {
                let epoch = epoch.ok_or_else(|| anyhow!("--epoch is required"))?;
                AuthorityEpochTables::open_readonly(epoch, &db_path)
                    .next_shared_object_versions
                    .db
            } else {
                AuthorityPerpetualTables::open_readonly(&db_path).objects.db
            }
        }
        StoreName::Index => {
            IndexStoreTables::get_read_only_handle(db_path, None, None, MetricConf::default())
                .event_by_move_module
                .db
        }
        StoreName::Epoch => {
            CommitteeStoreTables::get_read_only_handle(db_path, None, None, MetricConf::default())
                .committee_map
                .db
        }
    };

    let mut table = Table::new();
    table
        .set_content_arrangement(ContentArrangement::Dynamic)
        .set_width(200)
        .set_header(vec![
            "name",
            "level",
            "num_entries",
            "start_key",
            "end_key",
            "num_deletions",
            "file_size",
        ]);

    for file in db.live_files()?.iter() {
        if file.column_family_name != table_name {
            continue;
        }
        let mut row = Row::new();
        row.add_cell(Cell::new(&file.name));
        row.add_cell(Cell::new(file.level));
        row.add_cell(Cell::new(file.num_entries));
        row.add_cell(Cell::new(hex::encode(
            file.start_key.as_ref().unwrap_or(&"".as_bytes().to_vec()),
        )));
        row.add_cell(Cell::new(hex::encode(
            file.end_key.as_ref().unwrap_or(&"".as_bytes().to_vec()),
        )));
        row.add_cell(Cell::new(file.num_deletions));
        row.add_cell(Cell::new(file.size));
        table.add_row(row);
    }

    eprintln!("{}", table);
    Ok(())
}

pub fn duplicate_objects_summary(db_path: PathBuf) -> anyhow::Result<(usize, usize, usize, usize)> {
    let perpetual_tables = AuthorityPerpetualTables::open_readonly(&db_path);
    let iter = perpetual_tables.objects.safe_iter();
    let mut total_count = 0;
    let mut duplicate_count = 0;
    let mut total_bytes = 0;
    let mut duplicated_bytes = 0;

    let mut object_id: ObjectID = ObjectID::random();
    let mut data: HashMap<Vec<u8>, usize> = HashMap::new();

    for item in iter {
        let (key, value) = item?;
        if let StoreObject::Value(store_object) = value.migrate().into_inner() {
            if let StoreData::Move(object) = store_object.data {
                if object_id != key.0 {
                    for (k, cnt) in data.iter() {
                        total_bytes += k.len() * cnt;
                        duplicated_bytes += k.len() * (cnt - 1);
                        total_count += cnt;
                        duplicate_count += cnt - 1;
                    }
                    object_id = key.0;
                    data.clear();
                }
                *data.entry(object.contents().to_vec()).or_default() += 1;
            }
        }
    }
    Ok((total_count, duplicate_count, total_bytes, duplicated_bytes))
}

pub fn compact(db_path: PathBuf) -> anyhow::Result<()> {
    let perpetual = Arc::new(AuthorityPerpetualTables::open(&db_path, None));
    AuthorityStorePruner::compact(&perpetual)?;
    Ok(())
}

pub async fn prune_objects(db_path: PathBuf) -> anyhow::Result<()> {
    let perpetual_db = Arc::new(AuthorityPerpetualTables::open(&db_path.join("store"), None));
    let checkpoint_store = CheckpointStore::new(&db_path.join("checkpoints"));
    let rpc_index = RpcIndexStore::new_without_init(&db_path);
    let highest_pruned_checkpoint = checkpoint_store.get_highest_pruned_checkpoint_seq_number()?;
    let latest_checkpoint = checkpoint_store.get_highest_executed_checkpoint()?;
    info!(
        "Latest executed checkpoint sequence num: {}",
        latest_checkpoint.map(|x| x.sequence_number).unwrap_or(0)
    );
    info!("Highest pruned checkpoint: {}", highest_pruned_checkpoint);
    let metrics = AuthorityStorePruningMetrics::new(&Registry::default());
    info!("Pruning setup for db at path: {:?}", db_path.display());
    let pruning_config = AuthorityStorePruningConfig {
        num_epochs_to_retain: 0,
        ..Default::default()
    };
    info!("Starting object pruning");
    AuthorityStorePruner::prune_objects_for_eligible_epochs(
        &perpetual_db,
        &checkpoint_store,
        Some(&rpc_index),
        None,
        pruning_config,
        metrics,
        EPOCH_DURATION_MS_FOR_TESTING,
    )
    .await?;
    Ok(())
}

pub async fn prune_checkpoints(db_path: PathBuf) -> anyhow::Result<()> {
    let perpetual_db = Arc::new(AuthorityPerpetualTables::open(&db_path.join("store"), None));
    let checkpoint_store = CheckpointStore::new(&db_path.join("checkpoints"));
    let rpc_index = RpcIndexStore::new_without_init(&db_path);
    let metrics = AuthorityStorePruningMetrics::new(&Registry::default());
    info!("Pruning setup for db at path: {:?}", db_path.display());
    let pruning_config = AuthorityStorePruningConfig {
        num_epochs_to_retain_for_checkpoints: Some(1),
        ..Default::default()
    };
    info!("Starting txns and effects pruning");
    let archive_readers = ArchiveReaderBalancer::default();
    AuthorityStorePruner::prune_checkpoints_for_eligible_epochs(
        &perpetual_db,
        &checkpoint_store,
        Some(&rpc_index),
        None,
        pruning_config,
        metrics,
        archive_readers,
        EPOCH_DURATION_MS_FOR_TESTING,
    )
    .await?;
    Ok(())
}

// TODO: condense this using macro or trait dyn skills
pub fn dump_table(
    store_name: StoreName,
    epoch: Option<EpochId>,
    db_path: PathBuf,
    table_name: &str,
    page_size: u16,
    page_number: usize,
) -> anyhow::Result<BTreeMap<String, String>> {
    match store_name {
        StoreName::Validator => {
            let epoch_tables = AuthorityEpochTables::describe_tables();
            if epoch_tables.contains_key(table_name) {
                let epoch = epoch.ok_or_else(|| anyhow!("--epoch is required"))?;
                AuthorityEpochTables::open_readonly(epoch, &db_path).dump(
                    table_name,
                    page_size,
                    page_number,
                )
            } else {
                AuthorityPerpetualTables::open_readonly(&db_path).dump(
                    table_name,
                    page_size,
                    page_number,
                )
            }
        }
        StoreName::Index => {
            IndexStoreTables::get_read_only_handle(db_path, None, None, MetricConf::default()).dump(
                table_name,
                page_size,
                page_number,
            )
        }
        StoreName::Epoch => {
            CommitteeStoreTables::get_read_only_handle(db_path, None, None, MetricConf::default())
                .dump(table_name, page_size, page_number)
        }
    }
    .map_err(|err| anyhow!(err.to_string()))
}

#[cfg(test)]
mod test {
    use sui_core::authority::authority_per_epoch_store::AuthorityEpochTables;
    use sui_core::authority::authority_store_tables::AuthorityPerpetualTables;

    use crate::db_tool::db_dump::{dump_table, list_tables, StoreName};

    #[tokio::test]
    async fn db_dump_population() -> Result<(), anyhow::Error> {
        let primary_path = tempfile::tempdir()?.into_path();

        // Open the DB for writing
        let _: AuthorityEpochTables = AuthorityEpochTables::open(0, &primary_path, None);
        let _: AuthorityPerpetualTables = AuthorityPerpetualTables::open(&primary_path, None);

        // Get all the tables for AuthorityEpochTables
        let tables = {
            let mut epoch_tables =
                list_tables(AuthorityEpochTables::path(0, &primary_path)).unwrap();
            let mut perpetual_tables =
                list_tables(AuthorityPerpetualTables::path(&primary_path)).unwrap();
            epoch_tables.append(&mut perpetual_tables);
            epoch_tables
        };

        let mut missing_tables = vec![];
        for t in tables {
            println!("{}", t);
            if dump_table(
                StoreName::Validator,
                Some(0),
                primary_path.clone(),
                &t,
                0,
                0,
            )
            .is_err()
            {
                missing_tables.push(t);
            }
        }
        if missing_tables.is_empty() {
            return Ok(());
        }
        panic!(
            "{}",
            format!(
                "Missing {} table(s) from DB dump registration function: {:?} \n Update the dump function.",
                missing_tables.len(),
                missing_tables
            )
        );
    }
}