2017-04-01 09:19:00 +00:00
|
|
|
#include <Interpreters/Cluster.h>
|
2018-04-19 13:56:14 +00:00
|
|
|
#include <Common/DNSResolver.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Common/escapeForFileName.h>
|
|
|
|
#include <Common/isLocalAddress.h>
|
|
|
|
#include <Common/SimpleCache.h>
|
2018-01-15 19:07:47 +00:00
|
|
|
#include <Common/StringUtils/StringUtils.h>
|
2017-12-28 04:28:05 +00:00
|
|
|
#include <Common/parseAddress.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <IO/HexWriteBuffer.h>
|
2017-04-13 16:12:56 +00:00
|
|
|
#include <IO/WriteHelpers.h>
|
2017-07-26 19:31:32 +00:00
|
|
|
#include <IO/ReadHelpers.h>
|
2013-12-07 16:51:29 +00:00
|
|
|
#include <Poco/Util/AbstractConfiguration.h>
|
|
|
|
#include <Poco/Util/Application.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2016-01-12 02:21:15 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const int UNKNOWN_ELEMENT_IN_CONFIG;
|
|
|
|
extern const int EXCESSIVE_ELEMENT_IN_CONFIG;
|
|
|
|
extern const int LOGICAL_ERROR;
|
|
|
|
extern const int SHARD_HAS_NO_CONNECTIONS;
|
2017-07-26 19:31:32 +00:00
|
|
|
extern const int SYNTAX_ERROR;
|
2016-01-12 02:21:15 +00:00
|
|
|
}
|
|
|
|
|
2015-10-20 14:59:29 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
2016-08-22 20:34:21 +00:00
|
|
|
/// Default shard weight.
|
2017-08-08 00:06:21 +00:00
|
|
|
static constexpr UInt32 default_weight = 1;
|
2015-10-20 14:59:29 +00:00
|
|
|
|
2018-03-29 20:21:01 +00:00
|
|
|
inline bool isLocal(const Cluster::Address & address, const Poco::Net::SocketAddress & resolved_address, UInt16 clickhouse_port)
|
2015-10-20 14:59:29 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
/// If there is replica, for which:
|
|
|
|
/// - its port is the same that the server is listening;
|
|
|
|
/// - its host is resolved to set of addresses, one of which is the same as one of addresses of network interfaces of the server machine*;
|
|
|
|
/// then we must go to this shard without any inter-process communication.
|
|
|
|
///
|
|
|
|
/// * - this criteria is somewhat approximate.
|
|
|
|
///
|
|
|
|
/// Also, replica is considered non-local, if it has default database set
|
|
|
|
/// (only reason is to avoid query rewrite).
|
|
|
|
|
2018-03-29 20:21:01 +00:00
|
|
|
return address.default_database.empty() && isLocalAddress(resolved_address, clickhouse_port);
|
2015-10-20 14:59:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-08-22 20:34:21 +00:00
|
|
|
/// Implementation of Cluster::Address class
|
2015-10-16 16:10:10 +00:00
|
|
|
|
2016-10-10 08:44:52 +00:00
|
|
|
Cluster::Address::Address(Poco::Util::AbstractConfiguration & config, const String & config_prefix)
|
2013-12-07 16:51:29 +00:00
|
|
|
{
|
2018-03-29 20:21:01 +00:00
|
|
|
UInt16 clickhouse_port = static_cast<UInt16>(config.getInt("tcp_port", 0));
|
2017-09-07 14:38:35 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
host_name = config.getString(config_prefix + ".host");
|
2017-08-07 17:01:04 +00:00
|
|
|
port = static_cast<UInt16>(config.getInt(config_prefix + ".port"));
|
2017-04-01 07:20:54 +00:00
|
|
|
user = config.getString(config_prefix + ".user", "default");
|
|
|
|
password = config.getString(config_prefix + ".password", "");
|
|
|
|
default_database = config.getString(config_prefix + ".default_database", "");
|
2018-04-19 19:25:54 +00:00
|
|
|
initially_resolved_address = DNSResolver::instance().resolveAddress(host_name, port);
|
2018-03-29 20:21:01 +00:00
|
|
|
is_local = isLocal(*this, initially_resolved_address, clickhouse_port);
|
2018-03-29 01:41:06 +00:00
|
|
|
secure = config.getBool(config_prefix + ".secure", false) ? Protocol::Secure::Enable : Protocol::Secure::Disable;
|
|
|
|
compression = config.getBool(config_prefix + ".compression", true) ? Protocol::Compression::Enable : Protocol::Compression::Disable;
|
2014-08-12 13:46:46 +00:00
|
|
|
}
|
2014-02-22 21:50:27 +00:00
|
|
|
|
2015-10-16 16:10:10 +00:00
|
|
|
|
2017-09-07 14:38:35 +00:00
|
|
|
Cluster::Address::Address(const String & host_port_, const String & user_, const String & password_, UInt16 clickhouse_port)
|
2017-04-01 07:20:54 +00:00
|
|
|
: user(user_), password(password_)
|
2014-02-22 21:50:27 +00:00
|
|
|
{
|
2017-12-28 04:28:05 +00:00
|
|
|
auto parsed_host_port = parseAddress(host_port_, clickhouse_port);
|
2018-01-11 18:55:31 +00:00
|
|
|
host_name = parsed_host_port.first;
|
|
|
|
port = parsed_host_port.second;
|
2018-03-29 20:21:01 +00:00
|
|
|
|
2018-04-19 19:25:54 +00:00
|
|
|
initially_resolved_address = DNSResolver::instance().resolveAddress(parsed_host_port.first, parsed_host_port.second);
|
2018-03-29 20:21:01 +00:00
|
|
|
is_local = isLocal(*this, initially_resolved_address, clickhouse_port);
|
2014-02-22 21:50:27 +00:00
|
|
|
}
|
|
|
|
|
2017-05-30 11:49:17 +00:00
|
|
|
|
2017-04-13 16:12:56 +00:00
|
|
|
String Cluster::Address::toString() const
|
|
|
|
{
|
2017-05-30 11:49:17 +00:00
|
|
|
return toString(host_name, port);
|
|
|
|
}
|
|
|
|
|
|
|
|
String Cluster::Address::toString(const String & host_name, UInt16 port)
|
|
|
|
{
|
|
|
|
return escapeForFileName(host_name) + ':' + DB::toString(port);
|
2017-04-13 16:12:56 +00:00
|
|
|
}
|
|
|
|
|
2017-07-28 16:14:49 +00:00
|
|
|
String Cluster::Address::readableString() const
|
|
|
|
{
|
2018-04-19 19:25:54 +00:00
|
|
|
String res;
|
|
|
|
|
|
|
|
/// If it looks like IPv6 address add braces to avoid ambiguity in ipv6_host:port notation
|
|
|
|
if (host_name.find_first_of(':') != std::string::npos && !host_name.empty() && host_name.back() != ']')
|
|
|
|
res += '[' + host_name + ']';
|
|
|
|
else
|
|
|
|
res += host_name;
|
|
|
|
|
|
|
|
res += ':' + DB::toString(port);
|
|
|
|
return res;
|
2017-07-28 16:14:49 +00:00
|
|
|
}
|
|
|
|
|
2017-07-26 19:31:32 +00:00
|
|
|
void Cluster::Address::fromString(const String & host_port_string, String & host_name, UInt16 & port)
|
|
|
|
{
|
|
|
|
auto pos = host_port_string.find_last_of(':');
|
|
|
|
if (pos == std::string::npos)
|
2017-07-27 18:44:55 +00:00
|
|
|
throw Exception("Incorrect <host>:<port> format " + host_port_string, ErrorCodes::SYNTAX_ERROR);
|
2017-07-26 19:31:32 +00:00
|
|
|
|
|
|
|
host_name = unescapeForFileName(host_port_string.substr(0, pos));
|
2017-07-27 18:44:55 +00:00
|
|
|
port = parse<UInt16>(host_port_string.substr(pos + 1));
|
2017-07-26 19:31:32 +00:00
|
|
|
}
|
|
|
|
|
2017-05-30 11:49:17 +00:00
|
|
|
|
|
|
|
String Cluster::Address::toStringFull() const
|
|
|
|
{
|
|
|
|
return
|
|
|
|
escapeForFileName(user) +
|
|
|
|
(password.empty() ? "" : (':' + escapeForFileName(password))) + '@' +
|
2018-04-19 19:25:54 +00:00
|
|
|
escapeForFileName(host_name) + ':' +
|
|
|
|
std::to_string(port) +
|
2018-03-29 01:41:06 +00:00
|
|
|
(default_database.empty() ? "" : ('#' + escapeForFileName(default_database)))
|
|
|
|
+ ((secure == Protocol::Secure::Enable) ? "+secure" : "");
|
2017-05-30 11:49:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-22 20:34:21 +00:00
|
|
|
/// Implementation of Clusters class
|
2014-02-22 21:50:27 +00:00
|
|
|
|
2016-10-10 08:44:52 +00:00
|
|
|
Clusters::Clusters(Poco::Util::AbstractConfiguration & config, const Settings & settings, const String & config_name)
|
2013-12-07 16:51:29 +00:00
|
|
|
{
|
2018-08-05 03:55:41 +00:00
|
|
|
updateClusters(config, settings, config_name);
|
2016-10-10 08:44:52 +00:00
|
|
|
}
|
|
|
|
|
2016-10-14 15:06:46 +00:00
|
|
|
|
|
|
|
ClusterPtr Clusters::getCluster(const std::string & cluster_name) const
|
|
|
|
{
|
2018-01-25 12:18:27 +00:00
|
|
|
std::lock_guard lock(mutex);
|
2016-10-14 15:06:46 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
auto it = impl.find(cluster_name);
|
|
|
|
return (it != impl.end()) ? it->second : nullptr;
|
2016-10-14 15:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-11-03 19:53:10 +00:00
|
|
|
void Clusters::setCluster(const String & cluster_name, const std::shared_ptr<Cluster> & cluster)
|
|
|
|
{
|
2018-01-25 12:18:27 +00:00
|
|
|
std::lock_guard lock(mutex);
|
2017-11-03 19:53:10 +00:00
|
|
|
impl[cluster_name] = cluster;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-10 08:44:52 +00:00
|
|
|
void Clusters::updateClusters(Poco::Util::AbstractConfiguration & config, const Settings & settings, const String & config_name)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
Poco::Util::AbstractConfiguration::Keys config_keys;
|
|
|
|
config.keys(config_name, config_keys);
|
|
|
|
|
2018-01-25 12:18:27 +00:00
|
|
|
std::lock_guard lock(mutex);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-08-05 03:55:41 +00:00
|
|
|
impl.clear();
|
2017-04-01 07:20:54 +00:00
|
|
|
for (const auto & key : config_keys)
|
2018-10-22 12:38:04 +00:00
|
|
|
{
|
|
|
|
if (key.find('.') != String::npos)
|
|
|
|
throw Exception("Cluster names with dots are not supported: `" + key + "`", ErrorCodes::SYNTAX_ERROR);
|
|
|
|
|
2018-08-05 03:55:41 +00:00
|
|
|
impl.emplace(key, std::make_shared<Cluster>(config, settings, config_name + "." + key));
|
2018-10-22 12:38:04 +00:00
|
|
|
}
|
2016-10-10 08:44:52 +00:00
|
|
|
}
|
|
|
|
|
2016-10-14 15:06:46 +00:00
|
|
|
Clusters::Impl Clusters::getContainer() const
|
2016-10-10 08:44:52 +00:00
|
|
|
{
|
2018-01-25 12:18:27 +00:00
|
|
|
std::lock_guard lock(mutex);
|
2017-04-01 07:20:54 +00:00
|
|
|
/// The following line copies container of shared_ptrs to return value under lock
|
|
|
|
return impl;
|
2013-12-07 16:51:29 +00:00
|
|
|
}
|
|
|
|
|
2017-11-03 19:53:10 +00:00
|
|
|
|
2017-04-02 17:37:49 +00:00
|
|
|
/// Implementation of `Cluster` class
|
2013-12-07 16:51:29 +00:00
|
|
|
|
2016-10-10 08:44:52 +00:00
|
|
|
Cluster::Cluster(Poco::Util::AbstractConfiguration & config, const Settings & settings, const String & cluster_name)
|
2013-12-07 16:51:29 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
Poco::Util::AbstractConfiguration::Keys config_keys;
|
|
|
|
config.keys(cluster_name, config_keys);
|
|
|
|
|
|
|
|
if (config_keys.empty())
|
|
|
|
throw Exception("No cluster elements (shard, node) specified in config at path " + cluster_name, ErrorCodes::SHARD_HAS_NO_CONNECTIONS);
|
|
|
|
|
|
|
|
const auto & config_prefix = cluster_name + ".";
|
|
|
|
|
|
|
|
UInt32 current_shard_num = 1;
|
|
|
|
|
|
|
|
for (const auto & key : config_keys)
|
|
|
|
{
|
|
|
|
if (startsWith(key, "node"))
|
|
|
|
{
|
2017-04-02 17:37:49 +00:00
|
|
|
/// Shard without replicas.
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-08-11 15:02:07 +00:00
|
|
|
Addresses addresses;
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto & prefix = config_prefix + key;
|
|
|
|
const auto weight = config.getInt(prefix + ".weight", default_weight);
|
|
|
|
|
|
|
|
addresses.emplace_back(config, prefix);
|
|
|
|
addresses.back().replica_num = 1;
|
|
|
|
const auto & address = addresses.back();
|
|
|
|
|
|
|
|
ShardInfo info;
|
|
|
|
info.shard_num = current_shard_num;
|
|
|
|
info.weight = weight;
|
|
|
|
|
2017-08-11 15:02:07 +00:00
|
|
|
if (address.is_local)
|
2017-04-01 07:20:54 +00:00
|
|
|
info.local_addresses.push_back(address);
|
2018-08-10 01:27:54 +00:00
|
|
|
|
|
|
|
ConnectionPoolPtr pool = std::make_shared<ConnectionPool>(
|
|
|
|
settings.distributed_connections_pool_size,
|
|
|
|
address.host_name, address.port,
|
|
|
|
address.default_database, address.user, address.password,
|
|
|
|
ConnectionTimeouts::getTCPTimeoutsWithoutFailover(settings).getSaturated(settings.max_execution_time),
|
|
|
|
"server", address.compression, address.secure);
|
|
|
|
|
|
|
|
info.pool = std::make_shared<ConnectionPoolWithFailover>(
|
|
|
|
ConnectionPoolPtrs{pool}, settings.load_balancing, settings.connections_with_failover_max_tries);
|
|
|
|
info.per_replica_pools = {std::move(pool)};
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-08-08 00:06:21 +00:00
|
|
|
if (weight)
|
|
|
|
slot_to_shard.insert(std::end(slot_to_shard), weight, shards_info.size());
|
|
|
|
|
2018-02-14 15:11:39 +00:00
|
|
|
shards_info.emplace_back(std::move(info));
|
|
|
|
addresses_with_failover.emplace_back(std::move(addresses));
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
else if (startsWith(key, "shard"))
|
|
|
|
{
|
2017-04-02 17:37:49 +00:00
|
|
|
/// Shard with replicas.
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
Poco::Util::AbstractConfiguration::Keys replica_keys;
|
|
|
|
config.keys(config_prefix + key, replica_keys);
|
|
|
|
|
|
|
|
addresses_with_failover.emplace_back();
|
|
|
|
Addresses & replica_addresses = addresses_with_failover.back();
|
|
|
|
UInt32 current_replica_num = 1;
|
|
|
|
|
|
|
|
const auto & partial_prefix = config_prefix + key + ".";
|
2017-08-08 00:06:21 +00:00
|
|
|
const auto weight = config.getUInt(partial_prefix + ".weight", default_weight);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-05-30 11:49:17 +00:00
|
|
|
bool internal_replication = config.getBool(partial_prefix + ".internal_replication", false);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2018-04-19 19:25:54 +00:00
|
|
|
/// In case of internal_replication we will be appending names to dir_name_for_internal_replication
|
2017-08-11 15:02:07 +00:00
|
|
|
std::string dir_name_for_internal_replication;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
auto first = true;
|
|
|
|
for (const auto & replica_key : replica_keys)
|
|
|
|
{
|
|
|
|
if (startsWith(replica_key, "weight") || startsWith(replica_key, "internal_replication"))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (startsWith(replica_key, "replica"))
|
|
|
|
{
|
|
|
|
replica_addresses.emplace_back(config, partial_prefix + replica_key);
|
|
|
|
replica_addresses.back().replica_num = current_replica_num;
|
|
|
|
++current_replica_num;
|
|
|
|
|
2017-08-11 15:02:07 +00:00
|
|
|
if (!replica_addresses.back().is_local)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
if (internal_replication)
|
|
|
|
{
|
2017-05-30 11:49:17 +00:00
|
|
|
auto dir_name = replica_addresses.back().toStringFull();
|
2017-04-01 07:20:54 +00:00
|
|
|
if (first)
|
2017-08-11 15:02:07 +00:00
|
|
|
dir_name_for_internal_replication = dir_name;
|
2017-04-01 07:20:54 +00:00
|
|
|
else
|
2017-08-11 15:02:07 +00:00
|
|
|
dir_name_for_internal_replication += "," + dir_name;
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (first) first = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw Exception("Unknown element in config: " + replica_key, ErrorCodes::UNKNOWN_ELEMENT_IN_CONFIG);
|
|
|
|
}
|
|
|
|
|
|
|
|
Addresses shard_local_addresses;
|
|
|
|
|
2018-02-14 15:11:39 +00:00
|
|
|
ConnectionPoolPtrs all_replicas_pools;
|
|
|
|
all_replicas_pools.reserve(replica_addresses.size());
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
for (const auto & replica : replica_addresses)
|
|
|
|
{
|
2018-08-10 01:27:54 +00:00
|
|
|
auto replica_pool = std::make_shared<ConnectionPool>(
|
|
|
|
settings.distributed_connections_pool_size,
|
|
|
|
replica.host_name, replica.port,
|
|
|
|
replica.default_database, replica.user, replica.password,
|
|
|
|
ConnectionTimeouts::getTCPTimeoutsWithFailover(settings).getSaturated(settings.max_execution_time),
|
|
|
|
"server", replica.compression, replica.secure);
|
|
|
|
|
|
|
|
all_replicas_pools.emplace_back(replica_pool);
|
2017-08-11 15:02:07 +00:00
|
|
|
if (replica.is_local)
|
2017-04-01 07:20:54 +00:00
|
|
|
shard_local_addresses.push_back(replica);
|
|
|
|
}
|
|
|
|
|
2018-08-10 01:27:54 +00:00
|
|
|
ConnectionPoolWithFailoverPtr shard_pool = std::make_shared<ConnectionPoolWithFailover>(
|
|
|
|
all_replicas_pools, settings.load_balancing, settings.connections_with_failover_max_tries);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-08-08 00:06:21 +00:00
|
|
|
if (weight)
|
|
|
|
slot_to_shard.insert(std::end(slot_to_shard), weight, shards_info.size());
|
|
|
|
|
2017-08-11 15:02:07 +00:00
|
|
|
shards_info.push_back({std::move(dir_name_for_internal_replication), current_shard_num, weight,
|
2018-02-14 15:11:39 +00:00
|
|
|
std::move(shard_local_addresses), std::move(shard_pool), std::move(all_replicas_pools), internal_replication});
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
throw Exception("Unknown element in config: " + key, ErrorCodes::UNKNOWN_ELEMENT_IN_CONFIG);
|
|
|
|
|
|
|
|
++current_shard_num;
|
|
|
|
}
|
|
|
|
|
2017-08-11 15:02:07 +00:00
|
|
|
if (addresses_with_failover.empty())
|
|
|
|
throw Exception("There must be either 'node' or 'shard' elements in config", ErrorCodes::EXCESSIVE_ELEMENT_IN_CONFIG);
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
initMisc();
|
2013-12-07 16:51:29 +00:00
|
|
|
}
|
|
|
|
|
2014-02-22 21:50:27 +00:00
|
|
|
|
2016-08-22 20:34:21 +00:00
|
|
|
Cluster::Cluster(const Settings & settings, const std::vector<std::vector<String>> & names,
|
2018-03-05 12:47:09 +00:00
|
|
|
const String & username, const String & password, UInt16 clickhouse_port, bool treat_local_as_remote)
|
2014-02-07 15:11:57 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
UInt32 current_shard_num = 1;
|
|
|
|
|
|
|
|
for (const auto & shard : names)
|
|
|
|
{
|
|
|
|
Addresses current;
|
|
|
|
for (auto & replica : shard)
|
2017-09-07 14:38:35 +00:00
|
|
|
current.emplace_back(replica, username, password, clickhouse_port);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
addresses_with_failover.emplace_back(current);
|
|
|
|
|
2017-12-01 17:13:14 +00:00
|
|
|
Addresses shard_local_addresses;
|
2018-02-14 15:11:39 +00:00
|
|
|
ConnectionPoolPtrs all_replicas;
|
|
|
|
all_replicas.reserve(current.size());
|
2017-12-01 17:13:14 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
for (const auto & replica : current)
|
|
|
|
{
|
2018-08-10 01:27:54 +00:00
|
|
|
auto replica_pool = std::make_shared<ConnectionPool>(
|
2017-12-01 17:13:14 +00:00
|
|
|
settings.distributed_connections_pool_size,
|
2018-03-29 20:21:01 +00:00
|
|
|
replica.host_name, replica.port,
|
2017-12-01 17:13:14 +00:00
|
|
|
replica.default_database, replica.user, replica.password,
|
2018-03-12 20:25:18 +00:00
|
|
|
ConnectionTimeouts::getTCPTimeoutsWithFailover(settings).getSaturated(settings.max_execution_time),
|
2018-03-29 01:41:06 +00:00
|
|
|
"server", replica.compression, replica.secure);
|
2018-08-10 01:27:54 +00:00
|
|
|
all_replicas.emplace_back(replica_pool);
|
|
|
|
if (replica.is_local && !treat_local_as_remote)
|
|
|
|
shard_local_addresses.push_back(replica);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 17:40:55 +00:00
|
|
|
ConnectionPoolWithFailoverPtr shard_pool = std::make_shared<ConnectionPoolWithFailover>(
|
2018-08-10 01:27:54 +00:00
|
|
|
all_replicas, settings.load_balancing, settings.connections_with_failover_max_tries);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
slot_to_shard.insert(std::end(slot_to_shard), default_weight, shards_info.size());
|
2018-02-14 15:11:39 +00:00
|
|
|
shards_info.push_back({{}, current_shard_num, default_weight, std::move(shard_local_addresses), std::move(shard_pool),
|
|
|
|
std::move(all_replicas), false});
|
2017-04-01 07:20:54 +00:00
|
|
|
++current_shard_num;
|
|
|
|
}
|
|
|
|
|
|
|
|
initMisc();
|
2014-02-07 15:11:57 +00:00
|
|
|
}
|
|
|
|
|
2014-02-22 21:50:27 +00:00
|
|
|
|
|
|
|
Poco::Timespan Cluster::saturate(const Poco::Timespan & v, const Poco::Timespan & limit)
|
2013-12-07 16:51:29 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (limit.totalMicroseconds() == 0)
|
|
|
|
return v;
|
|
|
|
else
|
|
|
|
return (v > limit) ? limit : v;
|
2013-12-07 16:51:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-20 14:59:29 +00:00
|
|
|
void Cluster::initMisc()
|
2013-12-07 16:51:29 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
for (const auto & shard_info : shards_info)
|
|
|
|
{
|
|
|
|
if (!shard_info.isLocal() && !shard_info.hasRemoteConnections())
|
|
|
|
throw Exception("Found shard without any specified connection",
|
|
|
|
ErrorCodes::SHARD_HAS_NO_CONNECTIONS);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const auto & shard_info : shards_info)
|
|
|
|
{
|
|
|
|
if (shard_info.isLocal())
|
|
|
|
++local_shard_count;
|
|
|
|
else
|
|
|
|
++remote_shard_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto & shard_info : shards_info)
|
|
|
|
{
|
|
|
|
if (!shard_info.isLocal())
|
|
|
|
{
|
|
|
|
any_remote_shard_info = &shard_info;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-12-07 16:51:29 +00:00
|
|
|
}
|
|
|
|
|
2016-05-13 03:22:16 +00:00
|
|
|
|
|
|
|
std::unique_ptr<Cluster> Cluster::getClusterWithSingleShard(size_t index) const
|
|
|
|
{
|
2018-11-16 09:55:16 +00:00
|
|
|
return std::unique_ptr<Cluster>{ new Cluster(*this, {index}) };
|
2016-05-13 03:22:16 +00:00
|
|
|
}
|
|
|
|
|
2018-11-21 04:02:19 +00:00
|
|
|
std::unique_ptr<Cluster> Cluster::getClusterWithMultipleShards(std::vector<size_t> indices) const
|
2016-05-13 03:22:16 +00:00
|
|
|
{
|
2018-11-21 04:02:19 +00:00
|
|
|
return std::unique_ptr<Cluster>{ new Cluster(*this, indices) };
|
2018-11-16 09:55:16 +00:00
|
|
|
}
|
|
|
|
|
2018-11-21 04:02:19 +00:00
|
|
|
Cluster::Cluster(const Cluster & from, std::vector<size_t> indices)
|
2018-11-16 09:55:16 +00:00
|
|
|
: shards_info{}
|
|
|
|
{
|
2018-11-21 04:02:19 +00:00
|
|
|
for (size_t index : indices)
|
|
|
|
{
|
2018-11-16 09:55:16 +00:00
|
|
|
shards_info.push_back(from.shards_info[index]);
|
|
|
|
|
|
|
|
if (!from.addresses_with_failover.empty())
|
|
|
|
addresses_with_failover.emplace_back(from.addresses_with_failover[index]);
|
|
|
|
}
|
2016-05-13 03:22:16 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
initMisc();
|
2016-05-13 03:22:16 +00:00
|
|
|
}
|
|
|
|
|
2013-12-07 16:51:29 +00:00
|
|
|
}
|