Files
scylladb/test/unit/lsa_async_eviction_test.cc
Avi Kivity fcb8d040e8 treewide: use Software Package Data Exchange (SPDX) license identifiers
Instead of lengthy blurbs, switch to single-line, machine-readable
standardized (https://spdx.dev) license identifiers. The Linux kernel
switched long ago, so there is strong precedent.

Three cases are handled: AGPL-only, Apache-only, and dual licensed.
For the latter case, I chose (AGPL-3.0-or-later and Apache-2.0),
reasoning that our changes are extensive enough to apply our license.

The changes we applied mechanically with a script, except to
licenses/README.md.

Closes #9937
2022-01-18 12:15:18 +01:00

84 lines
2.9 KiB
C++

/*
* Copyright (C) 2015-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/util/defer.hh>
#include "utils/managed_bytes.hh"
#include "utils/logalloc.hh"
#include "utils/managed_ref.hh"
#include "test/perf/perf.hh"
#include "log.hh"
void print_stats() {
std::cout << "free " << memory::stats().free_memory()
<< " used " << logalloc::shard_tracker().occupancy().used_space()
<< " total " << logalloc::shard_tracker().occupancy().total_space()
<< std::endl;
}
int main(int argc, char** argv) {
namespace bpo = boost::program_options;
app_template app;
app.add_options()
("size", bpo::value<unsigned>()->default_value(1024), "size of allocated object")
("batch", bpo::value<unsigned>()->default_value(1024), "number of allocated objects between deferring points")
("count", bpo::value<unsigned>()->default_value(1024*200), "number of objects to allocate before exiting");
logging::logger_registry().set_all_loggers_level(logging::log_level::debug);
return app.run(argc, argv, [&app] {
auto obj_size = app.configuration()["size"].as<unsigned>();
auto obj_count = app.configuration()["count"].as<unsigned>();
auto objects_in_batch = app.configuration()["batch"].as<unsigned>();
return seastar::async([obj_size, obj_count, objects_in_batch] {
chunked_fifo<managed_bytes> refs;
logalloc::region r;
with_allocator(r.allocator(), [&] {
auto clear_refs = defer([&refs] { refs.clear(); });
r.make_evictable([&] {
return with_allocator(r.allocator(), [&] {
if (refs.empty()) {
return memory::reclaiming_result::reclaimed_nothing;
}
refs.pop_front();
return memory::reclaiming_result::reclaimed_something;
});
});
uint64_t counter = 0;
logalloc::allocating_section alloc_sect;
alloc_sect.set_lsa_reserve(0);
alloc_sect.set_std_reserve(0);
while (counter < obj_count) {
alloc_sect(r, [&] {
auto obj = managed_bytes(managed_bytes::initialized_later(), obj_size);
logalloc::reclaim_lock l(r);
refs.push_back(std::move(obj));
});
++counter;
if (counter % objects_in_batch == 0) {
print_stats();
seastar::thread::yield();
}
}
});
return 0;
});
});
}