So it could be used also for easily searching for an endpoint. Signed-off-by: Benny Halevy <bhalevy@scylladb.com>
35 lines
937 B
C++
35 lines
937 B
C++
/*
|
|
* Copyright (C) 2015-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "abstract_replication_strategy.hh"
|
|
|
|
#include <optional>
|
|
#include <set>
|
|
|
|
namespace locator {
|
|
|
|
class simple_strategy : public abstract_replication_strategy {
|
|
public:
|
|
simple_strategy(const replication_strategy_config_options& config_options);
|
|
virtual ~simple_strategy() {};
|
|
virtual size_t get_replication_factor(const token_metadata& tm) const override;
|
|
virtual void validate_options() const override;
|
|
virtual std::optional<std::set<sstring>> recognized_options(const topology&) const override;
|
|
virtual bool allow_remove_node_being_replaced_from_natural_endpoints() const override {
|
|
return true;
|
|
}
|
|
|
|
virtual future<endpoint_set> calculate_natural_endpoints(const token& search_token, const token_metadata& tm) const override;
|
|
private:
|
|
size_t _replication_factor = 1;
|
|
};
|
|
|
|
}
|