Example output: $ build/release/scylla perf-tablets --tables 10 --tablets-per-table $((8*1024)) --rf 3 testlog - Total tablet count: 81920 testlog - Size of tablet_metadata in memory: 7683 KiB testlog - Copied in 2.163421 [ms] testlog - Cleared in 0.767507 [ms] testlog - Saved in 774.813232 [ms] testlog - Read in 246.666885 [ms] testlog - Read mutations in 211.677292 [ms] testlog - Size of canonical mutations: 20.633621 [MiB] testlog - Disk space used by system.tablets: 0.902344 [MiB]
18 lines
398 B
C++
18 lines
398 B
C++
/*
|
|
* Copyright (C) 2023-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace perf {
|
|
|
|
int scylla_fast_forward_main(int argc, char** argv);
|
|
int scylla_row_cache_update_main(int argc, char**argv);
|
|
int scylla_simple_query_main(int argc, char** argv);
|
|
int scylla_sstable_main(int argc, char** argv);
|
|
int scylla_tablets_main(int argc, char**argv);
|
|
|
|
} // namespace tools
|