Files
scylladb/test/perf/perf_sstable.cc
Botond Dénes 86ed627fc4 compaction: move code to namespace compaction
The namespace usage in this directory is very inconsistent, with files
and classes scattered in:
* global namespace
* namespace compaction
* namespace sstables

With cases, where all three used in the same file. This code used to
live in sstables/ and some of it still retains namespace sstables as a
heritage of that time. The mismatch between the dir (future module) and
the namespace used is confusing, so finish the migration and move all
code in compaction/ to namespace compaction too.

This patch, although large, is mechanic and only the following kind of
changes are made:
* replace namespace sstable {} with namespace compaction {}
* add namespace compaction {}
* drop/add sstables::
* drop/add compaction::
* move around forward-declarations so they are in the correct namespace
  context

This refactoring revealed some awkward leftover coupling between
sstables and compaction, in sstables/sstable_set.cc, where the
make_sstable_set() methods of compaction strategies are implemented.
2025-09-25 15:03:56 +03:00

201 lines
7.8 KiB
C++

/*
* Copyright (C) 2015-present ScyllaDB
*/
/*
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
*/
#include <boost/program_options/errors.hpp>
#include <seastar/core/sharded.hh>
#include <seastar/core/app-template.hh>
#include <seastar/core/sstring.hh>
#include <seastar/core/reactor.hh>
#include <random>
#include "test/perf/perf_sstable.hh"
using namespace sstables;
static unsigned iterations = 30;
static unsigned parallelism = 1;
future<> test_write(sharded<perf_sstable_test_env>& dt) {
return seastar::async([&dt] {
dt.invoke_on_all([] (perf_sstable_test_env &t) {
return t.fill_memtable();
}).then([&dt] {
return time_runs(iterations, parallelism, dt, &perf_sstable_test_env::flush_memtable);
}).get();
});
}
future<> test_compaction(sharded<perf_sstable_test_env>& dt) {
return seastar::async([&dt] {
dt.invoke_on_all([] (perf_sstable_test_env &t) {
return t.fill_memtable();
}).then([&dt] {
return time_runs(iterations, parallelism, dt, &perf_sstable_test_env::compaction);
}).get();
});
}
future<> test_index_read(sharded<perf_sstable_test_env>& dt) {
return time_runs(iterations, parallelism, dt, &perf_sstable_test_env::read_all_indexes);
}
future<> test_sequential_read(sharded<perf_sstable_test_env>& dt) {
return time_runs(iterations, parallelism, dt, &perf_sstable_test_env::read_sequential_partitions);
}
future<> test_full_scan_streaming(sharded<perf_sstable_test_env>& dt) {
return time_runs(iterations, parallelism, dt, &perf_sstable_test_env::full_scan_streaming);
}
future<> test_partitioned_streaming(sharded<perf_sstable_test_env>& dt) {
return time_runs(iterations, parallelism, dt, &perf_sstable_test_env::partitioned_streaming);
}
enum class test_modes {
sequential_read,
index_read,
write,
index_write,
compaction,
full_scan_streaming,
partitioned_streaming,
};
static const std::unordered_map<sstring, test_modes> test_mode = {
{"sequential_read", test_modes::sequential_read },
{"index_read", test_modes::index_read },
{"write", test_modes::write },
{"index_write", test_modes::index_write },
{"compaction", test_modes::compaction },
{"full_scan_streaming", test_modes::full_scan_streaming },
{"parititioned_streaming", test_modes::partitioned_streaming },
};
std::istream& operator>>(std::istream& is, test_modes& mode) {
std::string token;
is >> token;
try {
mode = test_mode.at(token);
} catch (const std::out_of_range&) {
throw boost::program_options::invalid_option_value(token);
}
return is;
}
std::ostream& operator<<(std::ostream& os, test_modes mode) {
for (auto& [name, m] : test_mode) {
if (m == mode) {
return os << name;
}
}
assert(false && "unreachable");
}
namespace perf {
int scylla_sstable_main(int argc, char** argv) {
namespace bpo = boost::program_options;
app_template app;
app.add_options()
("parallelism", bpo::value<unsigned>()->default_value(1), "number parallel requests")
("iterations", bpo::value<unsigned>()->default_value(30), "number of iterations")
("partitions", bpo::value<unsigned>()->default_value(5000000), "number of partitions")
("buffer_size", bpo::value<unsigned>()->default_value(64), "sstable buffer size, in KB")
("key_size", bpo::value<unsigned>()->default_value(128), "size of partition key")
("num_columns", bpo::value<unsigned>()->default_value(5), "number of columns per row")
("column_size", bpo::value<unsigned>()->default_value(64), "size in bytes for each column")
("sstables", bpo::value<unsigned>()->default_value(1), "number of sstables (valid only for compaction mode)")
("mode", bpo::value<test_modes>()->default_value(test_modes::index_write), "one of: sequential_read, index_read, write, compaction, index_write, full_scan_streaming, partitioned_streaming")
("testdir", bpo::value<sstring>()->default_value("/var/lib/scylla/perf-tests"), "directory in which to store the sstables")
("compaction-strategy", bpo::value<sstring>()->default_value("SizeTieredCompactionStrategy"), "compaction strategy to use, one of "
"(SizeTieredCompactionStrategy, LeveledCompactionStrategy, DateTieredCompactionStrategy, TimeWindowCompactionStrategy)")
("timestamp-range", bpo::value<api::timestamp_type>()->default_value(0), "Timestamp values to use, chosen uniformly from: [-x, +x]");
return app.run(argc, argv, [&app] {
return async([&app] {
sharded<perf_sstable_test_env> test;
auto cfg = perf_sstable_test_env::conf();
iterations = app.configuration()["iterations"].as<unsigned>();
parallelism = app.configuration()["parallelism"].as<unsigned>();
cfg.partitions = app.configuration()["partitions"].as<unsigned>();
cfg.key_size = app.configuration()["key_size"].as<unsigned>();
cfg.buffer_size = app.configuration()["buffer_size"].as<unsigned>() << 10;
cfg.sstables = app.configuration()["sstables"].as<unsigned>();
sstring dir = app.configuration()["testdir"].as<sstring>();
cfg.dir = dir;
auto mode = app.configuration()["mode"].as<test_modes>();
if ((mode == test_modes::index_read) || (mode == test_modes::index_write)) {
cfg.num_columns = 0;
cfg.column_size = 0;
} else {
cfg.num_columns = app.configuration()["num_columns"].as<unsigned>();
cfg.column_size = app.configuration()["column_size"].as<unsigned>();
}
cfg.compaction_strategy = compaction::compaction_strategy::type(app.configuration()["compaction-strategy"].as<sstring>());
cfg.timestamp_range = app.configuration()["timestamp-range"].as<api::timestamp_type>();
auto scf = make_sstable_compressor_factory_for_tests_in_thread();
test.start(std::move(cfg), std::ref(*scf)).get();
auto stop_test = deferred_stop(test);
switch (mode) {
using enum test_modes;
case index_read:
[[fallthrough]];
case sequential_read:
[[fallthrough]];
case full_scan_streaming:
[[fallthrough]];
case partitioned_streaming:
try {
test.invoke_on_all([] (perf_sstable_test_env &t) {
return t.load_sstables(iterations);
}).get();
} catch (...) {
std::cerr << "An error occurred when trying to load test sstables. Did you run write mode yet?" << std::endl;
throw;
}
break;
case index_write:
[[fallthrough]];
case write:
[[fallthrough]];
case compaction:
test_setup::create_empty_test_dir(dir).get();
break;
}
switch (mode) {
using enum test_modes;
case index_read:
test_index_read(test).get();
break;
case sequential_read:
test_sequential_read(test).get();
break;
case full_scan_streaming:
test_full_scan_streaming(test).get();
break;
case partitioned_streaming:
test_partitioned_streaming(test).get();
break;
case index_write:
[[fallthrough]];
case write:
test_write(test).get();
break;
case compaction:
test_compaction(test).get();
break;
}
});
});
}
} // namespace perf