mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-26 11:30:36 +00:00
Signed-off-by: Lakshmi Narayanan Sreethar <lakshmi.sreethar@scylladb.com>
(cherry picked from commit 4d22c4b68b)
175 lines
6.3 KiB
C++
175 lines
6.3 KiB
C++
/*
|
|
* Copyright (C) 2019-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <seastar/core/do_with.hh>
|
|
#include <seastar/util/noncopyable_function.hh>
|
|
#include <seastar/core/sharded.hh>
|
|
#include <seastar/util/defer.hh>
|
|
|
|
#include "db/config.hh"
|
|
#include "db/large_data_handler.hh"
|
|
#include "gms/feature_service.hh"
|
|
#include "sstables/version.hh"
|
|
#include "sstables/sstable_directory.hh"
|
|
#include "test/lib/tmpdir.hh"
|
|
#include "test/lib/test_services.hh"
|
|
#include "test/lib/log.hh"
|
|
|
|
namespace sstables {
|
|
|
|
class test_env_sstables_manager : public sstables_manager {
|
|
using sstables_manager::sstables_manager;
|
|
std::optional<size_t> _promoted_index_block_size;
|
|
public:
|
|
virtual sstable_writer_config configure_writer(sstring origin = "test") const override {
|
|
auto ret = sstables_manager::configure_writer(std::move(origin));
|
|
if (_promoted_index_block_size) {
|
|
ret.promoted_index_block_size = *_promoted_index_block_size;
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
void set_promoted_index_block_size(size_t promoted_index_block_size) {
|
|
_promoted_index_block_size = promoted_index_block_size;
|
|
}
|
|
|
|
void increment_total_reclaimable_memory_and_maybe_reclaim(sstable *sst) {
|
|
sstables_manager::increment_total_reclaimable_memory_and_maybe_reclaim(sst);
|
|
}
|
|
|
|
size_t get_total_memory_reclaimed() {
|
|
return _total_memory_reclaimed;
|
|
}
|
|
|
|
size_t get_total_reclaimable_memory() {
|
|
return _total_reclaimable_memory;
|
|
}
|
|
};
|
|
|
|
struct test_env_config {
|
|
db::large_data_handler* large_data_handler = nullptr;
|
|
size_t available_memory = memory::stats().total_memory();
|
|
};
|
|
|
|
class test_env {
|
|
struct impl {
|
|
db::config db_config;
|
|
directory_semaphore dir_sem;
|
|
cache_tracker cache_tracker;
|
|
gms::feature_service feature_service;
|
|
db::nop_large_data_handler nop_ld_handler;
|
|
test_env_sstables_manager mgr;
|
|
reader_concurrency_semaphore semaphore;
|
|
|
|
impl(test_env_config cfg);
|
|
impl(impl&&) = delete;
|
|
impl(const impl&) = delete;
|
|
};
|
|
std::unique_ptr<impl> _impl;
|
|
public:
|
|
|
|
explicit test_env(test_env_config cfg = {}) : _impl(std::make_unique<impl>(std::move(cfg))) { }
|
|
|
|
future<> stop() {
|
|
return _impl->mgr.close().finally([this] {
|
|
return _impl->semaphore.stop();
|
|
});
|
|
}
|
|
|
|
shared_sstable make_sstable(schema_ptr schema, sstring dir, unsigned long generation,
|
|
sstable::version_types v = sstables::get_highest_sstable_version(), sstable::format_types f = sstable::format_types::big,
|
|
size_t buffer_size = default_sstable_buffer_size, gc_clock::time_point now = gc_clock::now()) {
|
|
return _impl->mgr.make_sstable(std::move(schema), dir, generation_from_value(generation), v, f, now, default_io_error_handler_gen(), buffer_size);
|
|
}
|
|
|
|
struct sst_not_found : public std::runtime_error {
|
|
sst_not_found(const sstring& dir, unsigned long generation)
|
|
: std::runtime_error(format("no versions of sstable generation {} found in {}", generation, dir))
|
|
{}
|
|
};
|
|
|
|
future<shared_sstable> reusable_sst(schema_ptr schema, sstring dir, unsigned long generation,
|
|
sstable::version_types version, sstable::format_types f = sstable::format_types::big) {
|
|
auto sst = make_sstable(std::move(schema), dir, generation, version, f);
|
|
sstable_open_config cfg { .load_first_and_last_position_metadata = true };
|
|
return sst->load(default_priority_class(), cfg).then([sst = std::move(sst)] {
|
|
return make_ready_future<shared_sstable>(std::move(sst));
|
|
});
|
|
}
|
|
|
|
// looks up the sstable in the given dir
|
|
future<shared_sstable> reusable_sst(schema_ptr schema, sstring dir, unsigned long generation);
|
|
|
|
test_env_sstables_manager& manager() { return _impl->mgr; }
|
|
reader_concurrency_semaphore& semaphore() { return _impl->semaphore; }
|
|
db::config& db_config() { return _impl->db_config; }
|
|
|
|
reader_permit make_reader_permit(const schema_ptr& s, const char* n, db::timeout_clock::time_point timeout) {
|
|
return _impl->semaphore.make_tracking_only_permit(s, n, timeout);
|
|
}
|
|
reader_permit make_reader_permit(db::timeout_clock::time_point timeout = db::no_timeout) {
|
|
return _impl->semaphore.make_tracking_only_permit(nullptr, "test", timeout);
|
|
}
|
|
|
|
replica::table::config make_table_config() {
|
|
return replica::table::config{.compaction_concurrency_semaphore = &_impl->semaphore};
|
|
}
|
|
|
|
future<> working_sst(schema_ptr schema, sstring dir, unsigned long generation) {
|
|
return reusable_sst(std::move(schema), dir, generation).then([] (auto ptr) { return make_ready_future<>(); });
|
|
}
|
|
|
|
template <typename Func>
|
|
static inline auto do_with(Func&& func, test_env_config cfg = {}) {
|
|
return seastar::do_with(test_env(std::move(cfg)), [func = std::move(func)] (test_env& env) mutable {
|
|
return futurize_invoke(func, env).finally([&env] {
|
|
return env.stop();
|
|
});
|
|
});
|
|
}
|
|
|
|
template <typename T, typename Func>
|
|
static inline auto do_with(T&& rval, Func&& func) {
|
|
return seastar::do_with(test_env(), std::forward<T>(rval), [func = std::move(func)] (test_env& env, T& val) mutable {
|
|
return futurize_invoke(func, env, val).finally([&env] {
|
|
return env.stop();
|
|
});
|
|
});
|
|
}
|
|
|
|
static inline future<> do_with_async(noncopyable_function<void (test_env&)> func, test_env_config cfg = {}) {
|
|
return seastar::async([func = std::move(func), cfg = std::move(cfg)] () mutable {
|
|
test_env env(std::move(cfg));
|
|
auto close_env = defer([&] { env.stop().get(); });
|
|
func(env);
|
|
});
|
|
}
|
|
|
|
static inline future<> do_with_sharded_async(noncopyable_function<void (sharded<test_env>&)> func) {
|
|
return seastar::async([func = std::move(func)] {
|
|
sharded<test_env> env;
|
|
env.start().get();
|
|
auto stop = defer([&] { env.stop().get(); });
|
|
func(env);
|
|
});
|
|
}
|
|
|
|
template <typename T>
|
|
static future<T> do_with_async_returning(noncopyable_function<T (test_env&)> func) {
|
|
return seastar::async([func = std::move(func)] {
|
|
test_env env;
|
|
auto stop = defer([&] { env.stop().get(); });
|
|
return func(env);
|
|
});
|
|
}
|
|
};
|
|
|
|
} // namespace sstables
|