2017-04-01 09:19:00 +00:00
|
|
|
#include <Client/MultiplexedConnections.h>
|
2019-03-01 23:04:33 +00:00
|
|
|
#include <IO/ConnectionTimeouts.h>
|
2015-11-06 17:44:01 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2016-01-12 02:21:15 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const int LOGICAL_ERROR;
|
|
|
|
extern const int MISMATCH_REPLICAS_DATA_SOURCES;
|
|
|
|
extern const int NO_AVAILABLE_REPLICA;
|
|
|
|
extern const int TIMEOUT_EXCEEDED;
|
2016-01-12 02:21:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-08-02 13:05:01 +00:00
|
|
|
MultiplexedConnections::MultiplexedConnections(Connection & connection, const Settings & settings_, const ThrottlerPtr & throttler)
|
|
|
|
: settings(settings_)
|
2015-11-06 17:44:01 +00:00
|
|
|
{
|
2017-08-02 13:05:01 +00:00
|
|
|
connection.setThrottler(throttler);
|
2015-11-06 17:44:01 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
ReplicaState replica_state;
|
2017-08-02 13:05:01 +00:00
|
|
|
replica_state.connection = &connection;
|
|
|
|
replica_states.push_back(replica_state);
|
2015-11-06 17:44:01 +00:00
|
|
|
|
2017-08-02 13:05:01 +00:00
|
|
|
active_connection_count = 1;
|
2015-11-06 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
2017-04-17 16:16:04 +00:00
|
|
|
MultiplexedConnections::MultiplexedConnections(
|
2017-07-28 19:34:25 +00:00
|
|
|
std::vector<IConnectionPool::Entry> && connections,
|
2018-11-28 14:33:40 +00:00
|
|
|
const Settings & settings_, const ThrottlerPtr & throttler)
|
2017-08-02 13:05:01 +00:00
|
|
|
: settings(settings_)
|
2015-11-06 17:44:01 +00:00
|
|
|
{
|
2017-08-02 13:05:01 +00:00
|
|
|
/// If we didn't get any connections from pool and getMany() did not throw exceptions, this means that
|
|
|
|
/// `skip_unavailable_shards` was set. Then just return.
|
|
|
|
if (connections.empty())
|
|
|
|
return;
|
2017-07-28 19:34:25 +00:00
|
|
|
|
2017-08-02 13:05:01 +00:00
|
|
|
replica_states.reserve(connections.size());
|
2020-03-09 02:55:28 +00:00
|
|
|
for (auto & connection : connections)
|
2017-08-02 13:05:01 +00:00
|
|
|
{
|
|
|
|
connection->setThrottler(throttler);
|
2017-07-28 19:34:25 +00:00
|
|
|
|
2017-08-02 13:05:01 +00:00
|
|
|
ReplicaState replica_state;
|
2020-03-09 02:55:28 +00:00
|
|
|
replica_state.connection = &*connection;
|
2020-03-09 21:14:27 +00:00
|
|
|
replica_state.pool_entry = std::move(connection);
|
2015-11-06 17:44:01 +00:00
|
|
|
|
2017-08-02 13:05:01 +00:00
|
|
|
replica_states.push_back(std::move(replica_state));
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2015-11-06 17:44:01 +00:00
|
|
|
|
2017-08-02 13:05:01 +00:00
|
|
|
active_connection_count = connections.size();
|
2015-11-06 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
2019-10-19 20:36:35 +00:00
|
|
|
void MultiplexedConnections::sendScalarsData(Scalars & data)
|
|
|
|
{
|
|
|
|
std::lock_guard lock(cancel_mutex);
|
|
|
|
|
|
|
|
if (!sent_query)
|
|
|
|
throw Exception("Cannot send scalars data: query not yet sent.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
|
|
|
for (ReplicaState & state : replica_states)
|
|
|
|
{
|
|
|
|
Connection * connection = state.connection;
|
|
|
|
if (connection != nullptr)
|
|
|
|
connection->sendScalarsData(data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-06 17:44:01 +00:00
|
|
|
void MultiplexedConnections::sendExternalTablesData(std::vector<ExternalTablesData> & data)
|
|
|
|
{
|
2019-01-02 06:44:36 +00:00
|
|
|
std::lock_guard lock(cancel_mutex);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
if (!sent_query)
|
|
|
|
throw Exception("Cannot send external tables data: query not yet sent.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
2017-08-02 13:05:01 +00:00
|
|
|
if (data.size() != active_connection_count)
|
2017-04-01 07:20:54 +00:00
|
|
|
throw Exception("Mismatch between replicas and data sources", ErrorCodes::MISMATCH_REPLICAS_DATA_SOURCES);
|
|
|
|
|
|
|
|
auto it = data.begin();
|
2017-08-02 13:05:01 +00:00
|
|
|
for (ReplicaState & state : replica_states)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-08-02 13:05:01 +00:00
|
|
|
Connection * connection = state.connection;
|
2017-04-01 07:20:54 +00:00
|
|
|
if (connection != nullptr)
|
2017-08-02 13:05:01 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
connection->sendExternalTablesData(*it);
|
2017-08-02 13:05:01 +00:00
|
|
|
++it;
|
|
|
|
}
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2015-11-06 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
2016-10-24 21:40:39 +00:00
|
|
|
void MultiplexedConnections::sendQuery(
|
2019-03-01 23:04:33 +00:00
|
|
|
const ConnectionTimeouts & timeouts,
|
2017-04-01 07:20:54 +00:00
|
|
|
const String & query,
|
|
|
|
const String & query_id,
|
|
|
|
UInt64 stage,
|
|
|
|
const ClientInfo * client_info,
|
|
|
|
bool with_pending_data)
|
2015-11-06 17:44:01 +00:00
|
|
|
{
|
2019-01-02 06:44:36 +00:00
|
|
|
std::lock_guard lock(cancel_mutex);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
if (sent_query)
|
|
|
|
throw Exception("Query already sent.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
2018-10-12 23:43:25 +00:00
|
|
|
Settings modified_settings = settings;
|
|
|
|
|
|
|
|
for (auto & replica : replica_states)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2018-10-12 23:43:25 +00:00
|
|
|
if (!replica.connection)
|
|
|
|
throw Exception("MultiplexedConnections: Internal error", ErrorCodes::LOGICAL_ERROR);
|
2017-08-02 13:05:01 +00:00
|
|
|
|
2019-03-01 23:04:33 +00:00
|
|
|
if (replica.connection->getServerRevision(timeouts) < DBMS_MIN_REVISION_WITH_CURRENT_AGGREGATION_VARIANT_SELECTION_METHOD)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2018-10-12 23:43:25 +00:00
|
|
|
/// Disable two-level aggregation due to version incompatibility.
|
|
|
|
modified_settings.group_by_two_level_threshold = 0;
|
|
|
|
modified_settings.group_by_two_level_threshold_bytes = 0;
|
|
|
|
}
|
|
|
|
}
|
2018-09-28 20:17:38 +00:00
|
|
|
|
2018-10-12 23:43:25 +00:00
|
|
|
size_t num_replicas = replica_states.size();
|
|
|
|
if (num_replicas > 1)
|
|
|
|
{
|
|
|
|
/// Use multiple replicas for parallel query processing.
|
|
|
|
modified_settings.parallel_replicas_count = num_replicas;
|
|
|
|
for (size_t i = 0; i < num_replicas; ++i)
|
|
|
|
{
|
|
|
|
modified_settings.parallel_replica_offset = i;
|
2019-03-01 23:04:33 +00:00
|
|
|
replica_states[i].connection->sendQuery(timeouts, query, query_id,
|
|
|
|
stage, &modified_settings, client_info, with_pending_data);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-10-12 23:43:25 +00:00
|
|
|
/// Use single replica.
|
2019-03-01 23:04:33 +00:00
|
|
|
replica_states[0].connection->sendQuery(timeouts, query, query_id, stage,
|
|
|
|
&modified_settings, client_info, with_pending_data);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sent_query = true;
|
2015-11-06 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
2019-11-15 16:34:43 +00:00
|
|
|
Packet MultiplexedConnections::receivePacket()
|
2015-11-06 17:44:01 +00:00
|
|
|
{
|
2019-01-02 06:44:36 +00:00
|
|
|
std::lock_guard lock(cancel_mutex);
|
2019-11-15 16:34:43 +00:00
|
|
|
Packet packet = receivePacketUnlocked();
|
2017-04-01 07:20:54 +00:00
|
|
|
return packet;
|
2015-11-06 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MultiplexedConnections::disconnect()
|
|
|
|
{
|
2019-01-02 06:44:36 +00:00
|
|
|
std::lock_guard lock(cancel_mutex);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-08-02 13:05:01 +00:00
|
|
|
for (ReplicaState & state : replica_states)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-08-02 13:05:01 +00:00
|
|
|
Connection * connection = state.connection;
|
2017-04-01 07:20:54 +00:00
|
|
|
if (connection != nullptr)
|
|
|
|
{
|
|
|
|
connection->disconnect();
|
2017-08-02 13:05:01 +00:00
|
|
|
invalidateReplica(state);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
}
|
2015-11-06 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MultiplexedConnections::sendCancel()
|
|
|
|
{
|
2019-01-02 06:44:36 +00:00
|
|
|
std::lock_guard lock(cancel_mutex);
|
2015-11-06 17:44:01 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!sent_query || cancelled)
|
|
|
|
throw Exception("Cannot cancel. Either no query sent or already cancelled.", ErrorCodes::LOGICAL_ERROR);
|
2015-11-06 17:44:01 +00:00
|
|
|
|
2017-08-02 13:05:01 +00:00
|
|
|
for (ReplicaState & state : replica_states)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-08-02 13:05:01 +00:00
|
|
|
Connection * connection = state.connection;
|
2017-04-01 07:20:54 +00:00
|
|
|
if (connection != nullptr)
|
|
|
|
connection->sendCancel();
|
|
|
|
}
|
2015-11-06 17:44:01 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
cancelled = true;
|
2015-11-06 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
2019-11-15 16:34:43 +00:00
|
|
|
Packet MultiplexedConnections::drain()
|
2015-11-06 17:44:01 +00:00
|
|
|
{
|
2019-01-02 06:44:36 +00:00
|
|
|
std::lock_guard lock(cancel_mutex);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
if (!cancelled)
|
|
|
|
throw Exception("Cannot drain connections: cancel first.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
2019-11-15 16:34:43 +00:00
|
|
|
Packet res;
|
2017-04-01 07:20:54 +00:00
|
|
|
res.type = Protocol::Server::EndOfStream;
|
|
|
|
|
|
|
|
while (hasActiveConnections())
|
|
|
|
{
|
2019-11-15 16:34:43 +00:00
|
|
|
Packet packet = receivePacketUnlocked();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
switch (packet.type)
|
|
|
|
{
|
|
|
|
case Protocol::Server::Data:
|
|
|
|
case Protocol::Server::Progress:
|
|
|
|
case Protocol::Server::ProfileInfo:
|
|
|
|
case Protocol::Server::Totals:
|
|
|
|
case Protocol::Server::Extremes:
|
|
|
|
case Protocol::Server::EndOfStream:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Protocol::Server::Exception:
|
|
|
|
default:
|
2017-07-28 19:34:25 +00:00
|
|
|
/// If we receive an exception or an unknown packet, we save it.
|
2017-04-01 07:20:54 +00:00
|
|
|
res = std::move(packet);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
2015-11-06 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string MultiplexedConnections::dumpAddresses() const
|
|
|
|
{
|
2019-01-02 06:44:36 +00:00
|
|
|
std::lock_guard lock(cancel_mutex);
|
2017-04-01 07:20:54 +00:00
|
|
|
return dumpAddressesUnlocked();
|
2015-11-06 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string MultiplexedConnections::dumpAddressesUnlocked() const
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
bool is_first = true;
|
|
|
|
std::ostringstream os;
|
2017-08-02 13:05:01 +00:00
|
|
|
for (const ReplicaState & state : replica_states)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-08-02 13:05:01 +00:00
|
|
|
const Connection * connection = state.connection;
|
2020-03-09 21:14:27 +00:00
|
|
|
if (connection)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
os << (is_first ? "" : "; ") << connection->getDescription();
|
|
|
|
is_first = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return os.str();
|
2015-11-06 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
2019-11-15 16:34:43 +00:00
|
|
|
Packet MultiplexedConnections::receivePacketUnlocked()
|
2015-11-06 17:44:01 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!sent_query)
|
|
|
|
throw Exception("Cannot receive packets: no query sent.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
if (!hasActiveConnections())
|
|
|
|
throw Exception("No more packets are available.", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
2017-08-02 13:05:01 +00:00
|
|
|
ReplicaState & state = getReplicaForReading();
|
|
|
|
current_connection = state.connection;
|
2017-04-01 07:20:54 +00:00
|
|
|
if (current_connection == nullptr)
|
2017-08-02 13:05:01 +00:00
|
|
|
throw Exception("Logical error: no available replica", ErrorCodes::NO_AVAILABLE_REPLICA);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2019-11-15 16:34:43 +00:00
|
|
|
Packet packet = current_connection->receivePacket();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
switch (packet.type)
|
|
|
|
{
|
|
|
|
case Protocol::Server::Data:
|
|
|
|
case Protocol::Server::Progress:
|
|
|
|
case Protocol::Server::ProfileInfo:
|
|
|
|
case Protocol::Server::Totals:
|
|
|
|
case Protocol::Server::Extremes:
|
2018-06-08 19:50:15 +00:00
|
|
|
case Protocol::Server::Log:
|
2017-04-01 07:20:54 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Protocol::Server::EndOfStream:
|
2017-08-02 13:05:01 +00:00
|
|
|
invalidateReplica(state);
|
2017-04-01 07:20:54 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Protocol::Server::Exception:
|
|
|
|
default:
|
|
|
|
current_connection->disconnect();
|
2017-08-02 13:05:01 +00:00
|
|
|
invalidateReplica(state);
|
2017-04-01 07:20:54 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return packet;
|
2015-11-06 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
2017-08-02 13:05:01 +00:00
|
|
|
MultiplexedConnections::ReplicaState & MultiplexedConnections::getReplicaForReading()
|
2015-11-06 17:44:01 +00:00
|
|
|
{
|
2017-08-02 13:05:01 +00:00
|
|
|
if (replica_states.size() == 1)
|
|
|
|
return replica_states[0];
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
Poco::Net::Socket::SocketList read_list;
|
2017-08-02 13:05:01 +00:00
|
|
|
read_list.reserve(active_connection_count);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
/// First, we check if there are data already in the buffer
|
|
|
|
/// of at least one connection.
|
2017-08-02 13:05:01 +00:00
|
|
|
for (const ReplicaState & state : replica_states)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-08-02 13:05:01 +00:00
|
|
|
Connection * connection = state.connection;
|
2018-06-14 14:29:42 +00:00
|
|
|
if ((connection != nullptr) && connection->hasReadPendingData())
|
2017-09-28 19:43:31 +00:00
|
|
|
read_list.push_back(*connection->socket);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2018-04-02 18:16:40 +00:00
|
|
|
/// If no data was found, then we check if there are any connections ready for reading.
|
2017-04-01 07:20:54 +00:00
|
|
|
if (read_list.empty())
|
|
|
|
{
|
|
|
|
Poco::Net::Socket::SocketList write_list;
|
|
|
|
Poco::Net::Socket::SocketList except_list;
|
|
|
|
|
2017-08-02 13:05:01 +00:00
|
|
|
for (const ReplicaState & state : replica_states)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-08-02 13:05:01 +00:00
|
|
|
Connection * connection = state.connection;
|
2017-04-01 07:20:54 +00:00
|
|
|
if (connection != nullptr)
|
2017-09-28 19:43:31 +00:00
|
|
|
read_list.push_back(*connection->socket);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
2017-07-31 15:03:22 +00:00
|
|
|
int n = Poco::Net::Socket::select(read_list, write_list, except_list, settings.receive_timeout);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
if (n == 0)
|
|
|
|
throw Exception("Timeout exceeded while reading from " + dumpAddressesUnlocked(), ErrorCodes::TIMEOUT_EXCEEDED);
|
|
|
|
}
|
|
|
|
|
2018-04-02 18:16:40 +00:00
|
|
|
/// TODO Absolutely wrong code: read_list could be empty; rand() is not thread safe and has low quality; motivation of rand is unclear.
|
|
|
|
/// This code path is disabled by default.
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
auto & socket = read_list[rand() % read_list.size()];
|
2017-10-04 15:18:05 +00:00
|
|
|
if (fd_to_replica_state_idx.empty())
|
|
|
|
{
|
|
|
|
fd_to_replica_state_idx.reserve(replica_states.size());
|
|
|
|
size_t replica_state_number = 0;
|
|
|
|
for (const auto & replica_state : replica_states)
|
|
|
|
{
|
|
|
|
fd_to_replica_state_idx.emplace(replica_state.connection->socket->impl()->sockfd(), replica_state_number);
|
|
|
|
++replica_state_number;
|
|
|
|
}
|
|
|
|
}
|
2017-08-02 13:05:01 +00:00
|
|
|
return replica_states[fd_to_replica_state_idx.at(socket.impl()->sockfd())];
|
2015-11-06 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
2017-08-02 13:05:01 +00:00
|
|
|
void MultiplexedConnections::invalidateReplica(ReplicaState & state)
|
2015-11-06 17:44:01 +00:00
|
|
|
{
|
2017-08-02 13:05:01 +00:00
|
|
|
state.connection = nullptr;
|
|
|
|
state.pool_entry = IConnectionPool::Entry();
|
|
|
|
--active_connection_count;
|
2015-11-06 17:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|