Files
scylladb/test/perf/perf_tablets.cc
Tomasz Grabiec 4b4238b069 test: perf: Introduce perf-tablets
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]
2023-04-24 10:49:37 +02:00

177 lines
5.8 KiB
C++

/*
* Copyright (C) 2023-present ScyllaDB
*/
/*
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#include <seastar/core/distributed.hh>
#include <seastar/core/app-template.hh>
#include <seastar/core/sstring.hh>
#include <seastar/core/thread.hh>
#include <seastar/core/reactor.hh>
#include "locator/tablets.hh"
#include "replica/tablets.hh"
#include "locator/tablet_replication_strategy.hh"
#include "db/config.hh"
#include "schema/schema_builder.hh"
#include "service/storage_proxy.hh"
#include "db/system_keyspace.hh"
#include "test/perf/perf.hh"
#include "test/lib/log.hh"
#include "test/lib/cql_test_env.hh"
using namespace locator;
using namespace replica;
seastar::abort_source aborted;
static const size_t MiB = 1 << 20;
static
cql_test_config tablet_cql_test_config() {
cql_test_config c;
c.db_config->experimental_features({
db::experimental_features_t::feature::TABLETS,
db::experimental_features_t::feature::RAFT
}, db::config::config_source::CommandLine);
return c;
}
static
future<table_id> add_table(cql_test_env& e) {
auto id = table_id(utils::UUID_gen::get_time_UUID());
co_await e.create_table([id] (std::string_view ks_name) {
return *schema_builder(ks_name, id.to_sstring(), id)
.with_column("p1", utf8_type, column_kind::partition_key)
.with_column("r1", int32_type)
.build();
});
co_return id;
}
static future<> test_basic_operations(app_template& app) {
return do_with_cql_env_thread([&] (cql_test_env& e) {
tablet_metadata tm;
auto h1 = host_id(utils::UUID_gen::get_time_UUID());
int nr_tables = app.configuration()["tables"].as<int>();
int tablets_per_table = app.configuration()["tablets-per-table"].as<int>();
int rf = app.configuration()["rf"].as<int>();
size_t total_tablets = 0;
std::vector<table_id> ids;
ids.resize(nr_tables);
for (int i = 0; i < nr_tables; ++i) {
ids[i] = add_table(e).get0();
}
testlog.info("Generating tablet metadata");
for (int i = 0; i < nr_tables; ++i) {
tablet_map tmap(tablets_per_table);
for (tablet_id j : tmap.tablet_ids()) {
aborted.check();
thread::maybe_yield();
tablet_replica_set replicas;
for (int k = 0; k < rf; ++k) {
replicas.push_back({h1, 0});
}
assert(replicas.size() == rf);
tmap.set_tablet(j, tablet_info{std::move(replicas)});
++total_tablets;
}
tm.set_tablet_map(ids[i], std::move(tmap));
}
testlog.info("Total tablet count: {}", total_tablets);
testlog.info("Size of tablet_metadata in memory: {} KiB",
(tm.external_memory_usage() + sizeof(tablet_metadata)) / 1024);
tablet_metadata tm2;
auto time_to_copy = duration_in_seconds([&] {
tm2 = tm;
});
testlog.info("Copied in {:.6f} [ms]", time_to_copy.count() * 1000);
auto time_to_clear = duration_in_seconds([&] {
tm2.clear_gently().get();
});
testlog.info("Cleared in {:.6f} [ms]", time_to_clear.count() * 1000);
auto time_to_save = duration_in_seconds([&] {
save_tablet_metadata(e.local_db(), tm, api::new_timestamp()).get();
});
testlog.info("Saved in {:.6f} [ms]", time_to_save.count() * 1000);
auto time_to_read = duration_in_seconds([&] {
tm2 = read_tablet_metadata(e.local_qp()).get0();
});
assert(tm == tm2);
testlog.info("Read in {:.6f} [ms]", time_to_read.count() * 1000);
std::vector<canonical_mutation> muts;
auto time_to_read_muts = duration_in_seconds([&] {
muts = replica::read_tablet_mutations(e.local_qp().proxy().container()).get0();
});
testlog.info("Read mutations in {:.6f} [ms]", time_to_read_muts.count() * 1000);
auto cm_size = 0;
for (auto&& cm : muts) {
cm_size += cm.representation().size();
}
testlog.info("Size of canonical mutations: {:.6f} [MiB]", double(cm_size) / MiB);
auto&& tablets_table = e.local_db().find_column_family(db::system_keyspace::tablets());
testlog.info("Disk space used by system.tablets: {:.6f} [MiB]", double(tablets_table.get_stats().live_disk_space_used) / MiB);
}, tablet_cql_test_config());
}
namespace perf {
int scylla_tablets_main(int argc, char** argv) {
namespace bpo = boost::program_options;
app_template app;
app.add_options()
("tables", bpo::value<int>()->default_value(100), "Number of tables to create.")
("tablets-per-table", bpo::value<int>()->default_value(10000), "Number of tablets per table.")
("rf", bpo::value<int>()->default_value(3), "Number of replicas per tablet.")
("verbose", "Enables standard logging")
;
return app.run(argc, argv, [&] {
return seastar::async([&] {
if (!app.configuration().contains("verbose")) {
auto testlog_level = logging::logger_registry().get_logger_level("testlog");
logging::logger_registry().set_all_loggers_level(seastar::log_level::warn);
logging::logger_registry().set_logger_level("testlog", testlog_level);
}
engine().at_exit([] {
aborted.request_abort();
return make_ready_future();
});
logalloc::prime_segment_pool(memory::stats().total_memory(), memory::min_free_memory()).get();
try {
test_basic_operations(app).get();
} catch (seastar::abort_requested_exception&) {
// Ignore
}
});
});
}
} // namespace perf