Files
scylladb/db/consistency_level.hh
Kefu Chai 6ead5a4696 treewide: move log.hh into utils/log.hh
the log.hh under the root of the tree was created keep the backward
compatibility when seastar was extracted into a separate library.
so log.hh should belong to `utils` directory, as it is based solely
on seastar, and can be used all subsystems.

in this change, we move log.hh into utils/log.hh to that it is more
modularized. and this also improves the readability, when one see
`#include "utils/log.hh"`, it is obvious that this source file
needs the logging system, instead of its own log facility -- please
note, we do have two other `log.hh` in the tree.

Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>
2024-10-22 06:54:46 +03:00

75 lines
2.4 KiB
C++

/*
* Copyright (C) 2015-present ScyllaDB
*
* Modified by ScyllaDB
*/
/*
* SPDX-License-Identifier: (AGPL-3.0-or-later and Apache-2.0)
*/
#pragma once
#include "db/consistency_level_type.hh"
#include "db/read_repair_decision.hh"
#include "gms/inet_address.hh"
#include "inet_address_vectors.hh"
#include "utils/log.hh"
#include "replica/database_fwd.hh"
namespace gms {
class gossiper;
};
namespace locator {
class effective_replication_map;
}
namespace db {
extern logging::logger cl_logger;
size_t quorum_for(const locator::effective_replication_map& erm);
size_t local_quorum_for(const locator::effective_replication_map& erm, const sstring& dc);
size_t block_for_local_serial(const locator::effective_replication_map& erm);
size_t block_for_each_quorum(const locator::effective_replication_map& erm);
size_t block_for(const locator::effective_replication_map& erm, consistency_level cl);
bool is_datacenter_local(consistency_level l);
inet_address_vector_replica_set
filter_for_query(consistency_level cl,
const locator::effective_replication_map& erm,
inet_address_vector_replica_set live_endpoints,
const inet_address_vector_replica_set& preferred_endpoints,
read_repair_decision read_repair,
const gms::gossiper& g,
std::optional<gms::inet_address>* extra,
replica::column_family* cf);
struct dc_node_count {
size_t live = 0;
size_t pending = 0;
};
bool
is_sufficient_live_nodes(consistency_level cl,
const locator::effective_replication_map& erm,
const inet_address_vector_replica_set& live_endpoints);
template<typename Range, typename PendingRange = std::array<gms::inet_address, 0>>
void assure_sufficient_live_nodes(
consistency_level cl,
const locator::effective_replication_map& erm,
const Range& live_endpoints,
const PendingRange& pending_endpoints = std::array<gms::inet_address, 0>());
extern template void assure_sufficient_live_nodes(consistency_level, const locator::effective_replication_map&, const inet_address_vector_replica_set&, const std::array<gms::inet_address, 0>&);
extern template void assure_sufficient_live_nodes(db::consistency_level, const locator::effective_replication_map&, const inet_address_vector_replica_set&, const utils::small_vector<gms::inet_address, 1ul>&);
}