mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
1381 lines
47 KiB
C++
1381 lines
47 KiB
C++
#include <Interpreters/DDLWorker.h>
|
|
#include <Parsers/ASTAlterQuery.h>
|
|
#include <Parsers/ASTDropQuery.h>
|
|
#include <Parsers/ASTOptimizeQuery.h>
|
|
#include <Parsers/ASTQueryWithOnCluster.h>
|
|
#include <Parsers/ASTQueryWithTableAndOutput.h>
|
|
#include <Parsers/ParserQuery.h>
|
|
#include <Parsers/parseQuery.h>
|
|
#include <Parsers/queryToString.h>
|
|
#include <IO/WriteHelpers.h>
|
|
#include <IO/ReadHelpers.h>
|
|
#include <IO/Operators.h>
|
|
#include <IO/ReadBufferFromString.h>
|
|
#include <Storages/IStorage.h>
|
|
#include <Storages/StorageDistributed.h>
|
|
#include <DataStreams/IBlockInputStream.h>
|
|
#include <Interpreters/executeQuery.h>
|
|
#include <Interpreters/Cluster.h>
|
|
#include <Interpreters/AddDefaultDatabaseVisitor.h>
|
|
#include <Access/AccessRightsElement.h>
|
|
#include <Common/DNSResolver.h>
|
|
#include <Common/Macros.h>
|
|
#include <common/getFQDNOrHostName.h>
|
|
#include <Common/setThreadName.h>
|
|
#include <Common/Stopwatch.h>
|
|
#include <Common/randomSeed.h>
|
|
#include <Common/ZooKeeper/ZooKeeper.h>
|
|
#include <Common/ZooKeeper/KeeperException.h>
|
|
#include <Common/ZooKeeper/Lock.h>
|
|
#include <Common/isLocalAddress.h>
|
|
#include <Common/quoteString.h>
|
|
#include <DataTypes/DataTypesNumber.h>
|
|
#include <DataTypes/DataTypeString.h>
|
|
#include <DataTypes/DataTypeArray.h>
|
|
#include <Columns/ColumnsNumber.h>
|
|
#include <Columns/ColumnString.h>
|
|
#include <Columns/ColumnArray.h>
|
|
#include <Storages/StorageReplicatedMergeTree.h>
|
|
#include <Poco/Timestamp.h>
|
|
#include <common/sleep.h>
|
|
#include <random>
|
|
#include <pcg_random.hpp>
|
|
#include <Poco/Net/NetException.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int NOT_IMPLEMENTED;
|
|
extern const int LOGICAL_ERROR;
|
|
extern const int UNKNOWN_FORMAT_VERSION;
|
|
extern const int INCONSISTENT_CLUSTER_DEFINITION;
|
|
extern const int TIMEOUT_EXCEEDED;
|
|
extern const int UNKNOWN_TYPE_OF_QUERY;
|
|
extern const int UNFINISHED;
|
|
extern const int QUERY_IS_PROHIBITED;
|
|
}
|
|
|
|
|
|
namespace
|
|
{
|
|
|
|
struct HostID
|
|
{
|
|
String host_name;
|
|
UInt16 port;
|
|
|
|
HostID() = default;
|
|
|
|
explicit HostID(const Cluster::Address & address)
|
|
: host_name(address.host_name), port(address.port) {}
|
|
|
|
static HostID fromString(const String & host_port_str)
|
|
{
|
|
HostID res;
|
|
std::tie(res.host_name, res.port) = Cluster::Address::fromString(host_port_str);
|
|
return res;
|
|
}
|
|
|
|
String toString() const
|
|
{
|
|
return Cluster::Address::toString(host_name, port);
|
|
}
|
|
|
|
String readableString() const
|
|
{
|
|
return host_name + ":" + DB::toString(port);
|
|
}
|
|
|
|
bool isLocalAddress(UInt16 clickhouse_port) const
|
|
{
|
|
try
|
|
{
|
|
return DB::isLocalAddress(DNSResolver::instance().resolveAddress(host_name, port), clickhouse_port);
|
|
}
|
|
catch (const Poco::Net::NetException &)
|
|
{
|
|
/// Avoid "Host not found" exceptions
|
|
return false;
|
|
}
|
|
}
|
|
|
|
static String applyToString(const HostID & host_id)
|
|
{
|
|
return host_id.toString();
|
|
}
|
|
};
|
|
|
|
}
|
|
|
|
|
|
struct DDLLogEntry
|
|
{
|
|
String query;
|
|
std::vector<HostID> hosts;
|
|
String initiator; // optional
|
|
|
|
static constexpr int CURRENT_VERSION = 1;
|
|
|
|
String toString()
|
|
{
|
|
WriteBufferFromOwnString wb;
|
|
|
|
Strings host_id_strings(hosts.size());
|
|
std::transform(hosts.begin(), hosts.end(), host_id_strings.begin(), HostID::applyToString);
|
|
|
|
auto version = CURRENT_VERSION;
|
|
wb << "version: " << version << "\n";
|
|
wb << "query: " << escape << query << "\n";
|
|
wb << "hosts: " << host_id_strings << "\n";
|
|
wb << "initiator: " << initiator << "\n";
|
|
|
|
return wb.str();
|
|
}
|
|
|
|
void parse(const String & data)
|
|
{
|
|
ReadBufferFromString rb(data);
|
|
|
|
int version;
|
|
rb >> "version: " >> version >> "\n";
|
|
|
|
if (version != CURRENT_VERSION)
|
|
throw Exception("Unknown DDLLogEntry format version: " + DB::toString(version), ErrorCodes::UNKNOWN_FORMAT_VERSION);
|
|
|
|
Strings host_id_strings;
|
|
rb >> "query: " >> escape >> query >> "\n";
|
|
rb >> "hosts: " >> host_id_strings >> "\n";
|
|
|
|
if (!rb.eof())
|
|
rb >> "initiator: " >> initiator >> "\n";
|
|
else
|
|
initiator.clear();
|
|
|
|
assertEOF(rb);
|
|
|
|
hosts.resize(host_id_strings.size());
|
|
std::transform(host_id_strings.begin(), host_id_strings.end(), hosts.begin(), HostID::fromString);
|
|
}
|
|
};
|
|
|
|
|
|
struct DDLTask
|
|
{
|
|
/// Stages of task lifetime correspond ordering of these data fields:
|
|
|
|
/// Stage 1: parse entry
|
|
String entry_name;
|
|
String entry_path;
|
|
DDLLogEntry entry;
|
|
|
|
/// Stage 2: resolve host_id and check that
|
|
HostID host_id;
|
|
String host_id_str;
|
|
|
|
/// Stage 3.1: parse query
|
|
ASTPtr query;
|
|
ASTQueryWithOnCluster * query_on_cluster = nullptr;
|
|
|
|
/// Stage 3.2: check cluster and find the host in cluster
|
|
String cluster_name;
|
|
ClusterPtr cluster;
|
|
Cluster::Address address_in_cluster;
|
|
size_t host_shard_num;
|
|
size_t host_replica_num;
|
|
|
|
/// Stage 3.3: execute query
|
|
ExecutionStatus execution_status;
|
|
bool was_executed = false;
|
|
|
|
/// Stage 4: commit results to ZooKeeper
|
|
};
|
|
|
|
|
|
static std::unique_ptr<zkutil::Lock> createSimpleZooKeeperLock(
|
|
const std::shared_ptr<zkutil::ZooKeeper> & zookeeper, const String & lock_prefix, const String & lock_name, const String & lock_message)
|
|
{
|
|
auto zookeeper_holder = std::make_shared<zkutil::ZooKeeperHolder>();
|
|
zookeeper_holder->initFromInstance(zookeeper);
|
|
return std::make_unique<zkutil::Lock>(std::move(zookeeper_holder), lock_prefix, lock_name, lock_message);
|
|
}
|
|
|
|
|
|
static bool isSupportedAlterType(int type)
|
|
{
|
|
static const std::unordered_set<int> unsupported_alter_types{
|
|
ASTAlterCommand::ATTACH_PARTITION,
|
|
ASTAlterCommand::REPLACE_PARTITION,
|
|
ASTAlterCommand::FETCH_PARTITION,
|
|
ASTAlterCommand::FREEZE_PARTITION,
|
|
ASTAlterCommand::FREEZE_ALL,
|
|
ASTAlterCommand::NO_TYPE,
|
|
};
|
|
|
|
return unsupported_alter_types.count(type) == 0;
|
|
}
|
|
|
|
|
|
DDLWorker::DDLWorker(const std::string & zk_root_dir, Context & context_, const Poco::Util::AbstractConfiguration * config, const String & prefix)
|
|
: context(context_), log(&Logger::get("DDLWorker"))
|
|
{
|
|
queue_dir = zk_root_dir;
|
|
if (queue_dir.back() == '/')
|
|
queue_dir.resize(queue_dir.size() - 1);
|
|
|
|
if (config)
|
|
{
|
|
task_max_lifetime = config->getUInt64(prefix + ".task_max_lifetime", static_cast<UInt64>(task_max_lifetime));
|
|
cleanup_delay_period = config->getUInt64(prefix + ".cleanup_delay_period", static_cast<UInt64>(cleanup_delay_period));
|
|
max_tasks_in_queue = std::max<UInt64>(1, config->getUInt64(prefix + ".max_tasks_in_queue", max_tasks_in_queue));
|
|
|
|
if (config->has(prefix + ".profile"))
|
|
context.setSetting("profile", config->getString(prefix + ".profile"));
|
|
}
|
|
|
|
if (context.getSettingsRef().readonly)
|
|
{
|
|
LOG_WARNING(log, "Distributed DDL worker is run with readonly settings, it will not be able to execute DDL queries"
|
|
<< " Set appropriate system_profile or distributed_ddl.profile to fix this.");
|
|
}
|
|
|
|
host_fqdn = getFQDNOrHostName();
|
|
host_fqdn_id = Cluster::Address::toString(host_fqdn, context.getTCPPort());
|
|
|
|
main_thread = ThreadFromGlobalPool(&DDLWorker::runMainThread, this);
|
|
cleanup_thread = ThreadFromGlobalPool(&DDLWorker::runCleanupThread, this);
|
|
}
|
|
|
|
|
|
DDLWorker::~DDLWorker()
|
|
{
|
|
stop_flag = true;
|
|
queue_updated_event->set();
|
|
cleanup_event->set();
|
|
main_thread.join();
|
|
cleanup_thread.join();
|
|
}
|
|
|
|
|
|
DDLWorker::ZooKeeperPtr DDLWorker::tryGetZooKeeper() const
|
|
{
|
|
std::lock_guard lock(zookeeper_mutex);
|
|
return current_zookeeper;
|
|
}
|
|
|
|
DDLWorker::ZooKeeperPtr DDLWorker::getAndSetZooKeeper()
|
|
{
|
|
std::lock_guard lock(zookeeper_mutex);
|
|
|
|
if (!current_zookeeper || current_zookeeper->expired())
|
|
current_zookeeper = context.getZooKeeper();
|
|
|
|
return current_zookeeper;
|
|
}
|
|
|
|
|
|
bool DDLWorker::initAndCheckTask(const String & entry_name, String & out_reason, const ZooKeeperPtr & zookeeper)
|
|
{
|
|
String node_data;
|
|
String entry_path = queue_dir + "/" + entry_name;
|
|
|
|
if (!zookeeper->tryGet(entry_path, node_data))
|
|
{
|
|
/// It is Ok that node could be deleted just now. It means that there are no current host in node's host list.
|
|
out_reason = "The task was deleted";
|
|
return false;
|
|
}
|
|
|
|
auto task = std::make_unique<DDLTask>();
|
|
task->entry_name = entry_name;
|
|
task->entry_path = entry_path;
|
|
|
|
try
|
|
{
|
|
task->entry.parse(node_data);
|
|
}
|
|
catch (...)
|
|
{
|
|
/// What should we do if we even cannot parse host name and therefore cannot properly submit execution status?
|
|
/// We can try to create fail node using FQDN if it equal to host name in cluster config attempt will be successful.
|
|
/// Otherwise, that node will be ignored by DDLQueryStatusInputStream.
|
|
|
|
tryLogCurrentException(log, "Cannot parse DDL task " + entry_name + ", will try to send error status");
|
|
|
|
String status = ExecutionStatus::fromCurrentException().serializeText();
|
|
try
|
|
{
|
|
createStatusDirs(entry_path, zookeeper);
|
|
zookeeper->tryCreate(entry_path + "/finished/" + host_fqdn_id, status, zkutil::CreateMode::Persistent);
|
|
}
|
|
catch (...)
|
|
{
|
|
tryLogCurrentException(log, "Can't report the task has invalid format");
|
|
}
|
|
|
|
out_reason = "Incorrect task format";
|
|
return false;
|
|
}
|
|
|
|
bool host_in_hostlist = false;
|
|
for (const HostID & host : task->entry.hosts)
|
|
{
|
|
auto maybe_secure_port = context.getTCPPortSecure();
|
|
|
|
/// The port is considered local if it matches TCP or TCP secure port that the server is listening.
|
|
bool is_local_port = (maybe_secure_port && host.isLocalAddress(*maybe_secure_port))
|
|
|| host.isLocalAddress(context.getTCPPort());
|
|
|
|
if (!is_local_port)
|
|
continue;
|
|
|
|
if (host_in_hostlist)
|
|
{
|
|
/// This check could be slow a little bit
|
|
LOG_WARNING(log, "There are two the same ClickHouse instances in task " << entry_name
|
|
<< ": " << task->host_id.readableString() << " and " << host.readableString() << ". Will use the first one only.");
|
|
}
|
|
else
|
|
{
|
|
host_in_hostlist = true;
|
|
task->host_id = host;
|
|
task->host_id_str = host.toString();
|
|
}
|
|
}
|
|
|
|
if (host_in_hostlist)
|
|
current_task = std::move(task);
|
|
else
|
|
out_reason = "There is no a local address in host list";
|
|
|
|
return host_in_hostlist;
|
|
}
|
|
|
|
|
|
static void filterAndSortQueueNodes(Strings & all_nodes)
|
|
{
|
|
all_nodes.erase(std::remove_if(all_nodes.begin(), all_nodes.end(), [] (const String & s) { return !startsWith(s, "query-"); }), all_nodes.end());
|
|
std::sort(all_nodes.begin(), all_nodes.end());
|
|
}
|
|
|
|
|
|
void DDLWorker::processTasks()
|
|
{
|
|
LOG_DEBUG(log, "Processing tasks");
|
|
auto zookeeper = tryGetZooKeeper();
|
|
|
|
Strings queue_nodes = zookeeper->getChildren(queue_dir, nullptr, queue_updated_event);
|
|
filterAndSortQueueNodes(queue_nodes);
|
|
if (queue_nodes.empty())
|
|
return;
|
|
|
|
bool server_startup = last_processed_task_name.empty();
|
|
|
|
auto begin_node = server_startup
|
|
? queue_nodes.begin()
|
|
: std::upper_bound(queue_nodes.begin(), queue_nodes.end(), last_processed_task_name);
|
|
|
|
for (auto it = begin_node; it != queue_nodes.end(); ++it)
|
|
{
|
|
String entry_name = *it;
|
|
|
|
if (current_task)
|
|
{
|
|
if (current_task->entry_name == entry_name)
|
|
{
|
|
LOG_INFO(log, "Trying to process task " << entry_name << " again");
|
|
}
|
|
else
|
|
{
|
|
LOG_INFO(log, "Task " << current_task->entry_name << " was deleted from ZooKeeper before current host committed it");
|
|
current_task = nullptr;
|
|
}
|
|
}
|
|
|
|
if (!current_task)
|
|
{
|
|
String reason;
|
|
if (!initAndCheckTask(entry_name, reason, zookeeper))
|
|
{
|
|
LOG_DEBUG(log, "Will not execute task " << entry_name << ": " << reason);
|
|
last_processed_task_name = entry_name;
|
|
continue;
|
|
}
|
|
}
|
|
|
|
DDLTask & task = *current_task;
|
|
|
|
bool already_processed = zookeeper->exists(task.entry_path + "/finished/" + task.host_id_str);
|
|
if (!server_startup && !task.was_executed && already_processed)
|
|
{
|
|
throw Exception(
|
|
"Server expects that DDL task " + task.entry_name + " should be processed, but it was already processed according to ZK",
|
|
ErrorCodes::LOGICAL_ERROR);
|
|
}
|
|
|
|
if (!already_processed)
|
|
{
|
|
try
|
|
{
|
|
processTask(task, zookeeper);
|
|
}
|
|
catch (const Coordination::Exception & e)
|
|
{
|
|
if (server_startup && e.code == Coordination::ZNONODE)
|
|
{
|
|
LOG_WARNING(log, "ZooKeeper NONODE error during startup. Ignoring entry " <<
|
|
task.entry_name << " (" << task.entry.query << ") : " << getCurrentExceptionMessage(true));
|
|
}
|
|
else
|
|
{
|
|
throw;
|
|
}
|
|
}
|
|
catch (...)
|
|
{
|
|
LOG_WARNING(log, "An error occurred while processing task " << task.entry_name << " (" << task.entry.query << ") : "
|
|
<< getCurrentExceptionMessage(true));
|
|
throw;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
LOG_DEBUG(log, "Task " << task.entry_name << " (" << task.entry.query << ") has been already processed");
|
|
}
|
|
|
|
last_processed_task_name = task.entry_name;
|
|
current_task.reset();
|
|
|
|
if (stop_flag)
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
/// Parses query and resolves cluster and host in cluster
|
|
void DDLWorker::parseQueryAndResolveHost(DDLTask & task)
|
|
{
|
|
{
|
|
const char * begin = task.entry.query.data();
|
|
const char * end = begin + task.entry.query.size();
|
|
|
|
ParserQuery parser_query(end);
|
|
String description;
|
|
task.query = parseQuery(parser_query, begin, end, description, 0);
|
|
}
|
|
|
|
// XXX: serious design flaw since `ASTQueryWithOnCluster` is not inherited from `IAST`!
|
|
if (!task.query || !(task.query_on_cluster = dynamic_cast<ASTQueryWithOnCluster *>(task.query.get())))
|
|
throw Exception("Received unknown DDL query", ErrorCodes::UNKNOWN_TYPE_OF_QUERY);
|
|
|
|
task.cluster_name = task.query_on_cluster->cluster;
|
|
task.cluster = context.tryGetCluster(task.cluster_name);
|
|
if (!task.cluster)
|
|
{
|
|
throw Exception("DDL task " + task.entry_name + " contains current host " + task.host_id.readableString()
|
|
+ " in cluster " + task.cluster_name + ", but there are no such cluster here.", ErrorCodes::INCONSISTENT_CLUSTER_DEFINITION);
|
|
}
|
|
|
|
/// Try to find host from task host list in cluster
|
|
/// At the first, try find exact match (host name and ports should be literally equal)
|
|
/// If the attempt fails, try find it resolving host name of each instance
|
|
const auto & shards = task.cluster->getShardsAddresses();
|
|
|
|
bool found_exact_match = false;
|
|
for (size_t shard_num = 0; shard_num < shards.size(); ++shard_num)
|
|
{
|
|
for (size_t replica_num = 0; replica_num < shards[shard_num].size(); ++replica_num)
|
|
{
|
|
const Cluster::Address & address = shards[shard_num][replica_num];
|
|
|
|
if (address.host_name == task.host_id.host_name && address.port == task.host_id.port)
|
|
{
|
|
if (found_exact_match)
|
|
{
|
|
throw Exception("There are two exactly the same ClickHouse instances " + address.readableString()
|
|
+ " in cluster " + task.cluster_name, ErrorCodes::INCONSISTENT_CLUSTER_DEFINITION);
|
|
}
|
|
|
|
found_exact_match = true;
|
|
task.host_shard_num = shard_num;
|
|
task.host_replica_num = replica_num;
|
|
task.address_in_cluster = address;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (found_exact_match)
|
|
return;
|
|
|
|
LOG_WARNING(log, "Not found the exact match of host " << task.host_id.readableString() << " from task " << task.entry_name
|
|
<< " in cluster " << task.cluster_name << " definition. Will try to find it using host name resolving.");
|
|
|
|
bool found_via_resolving = false;
|
|
for (size_t shard_num = 0; shard_num < shards.size(); ++shard_num)
|
|
{
|
|
for (size_t replica_num = 0; replica_num < shards[shard_num].size(); ++replica_num)
|
|
{
|
|
const Cluster::Address & address = shards[shard_num][replica_num];
|
|
|
|
if (auto resolved = address.getResolvedAddress();
|
|
resolved && (isLocalAddress(*resolved, context.getTCPPort())
|
|
|| (context.getTCPPortSecure() && isLocalAddress(*resolved, *context.getTCPPortSecure()))))
|
|
{
|
|
if (found_via_resolving)
|
|
{
|
|
throw Exception("There are two the same ClickHouse instances in cluster " + task.cluster_name + " : "
|
|
+ task.address_in_cluster.readableString() + " and " + address.readableString(), ErrorCodes::INCONSISTENT_CLUSTER_DEFINITION);
|
|
}
|
|
else
|
|
{
|
|
found_via_resolving = true;
|
|
task.host_shard_num = shard_num;
|
|
task.host_replica_num = replica_num;
|
|
task.address_in_cluster = address;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!found_via_resolving)
|
|
{
|
|
throw Exception("Not found host " + task.host_id.readableString() + " in definition of cluster " + task.cluster_name,
|
|
ErrorCodes::INCONSISTENT_CLUSTER_DEFINITION);
|
|
}
|
|
else
|
|
{
|
|
LOG_INFO(log, "Resolved host " << task.host_id.readableString() << " from task " << task.entry_name
|
|
<< " as host " << task.address_in_cluster.readableString() << " in definition of cluster " << task.cluster_name);
|
|
}
|
|
}
|
|
|
|
|
|
bool DDLWorker::tryExecuteQuery(const String & query, const DDLTask & task, ExecutionStatus & status)
|
|
{
|
|
/// Add special comment at the start of query to easily identify DDL-produced queries in query_log
|
|
String query_prefix = "/* ddl_entry=" + task.entry_name + " */ ";
|
|
String query_to_execute = query_prefix + query;
|
|
|
|
ReadBufferFromString istr(query_to_execute);
|
|
String dummy_string;
|
|
WriteBufferFromString ostr(dummy_string);
|
|
|
|
try
|
|
{
|
|
current_context = std::make_unique<Context>(context);
|
|
current_context->getClientInfo().query_kind = ClientInfo::QueryKind::SECONDARY_QUERY;
|
|
current_context->setCurrentQueryId(""); // generate random query_id
|
|
executeQuery(istr, ostr, false, *current_context, {});
|
|
}
|
|
catch (...)
|
|
{
|
|
status = ExecutionStatus::fromCurrentException();
|
|
tryLogCurrentException(log, "Query " + query + " wasn't finished successfully");
|
|
|
|
return false;
|
|
}
|
|
|
|
status = ExecutionStatus(0);
|
|
LOG_DEBUG(log, "Executed query: " << query);
|
|
|
|
return true;
|
|
}
|
|
|
|
void DDLWorker::attachToThreadGroup()
|
|
{
|
|
if (thread_group)
|
|
{
|
|
/// Put all threads to one thread pool
|
|
CurrentThread::attachToIfDetached(thread_group);
|
|
}
|
|
else
|
|
{
|
|
CurrentThread::initializeQuery();
|
|
thread_group = CurrentThread::getGroup();
|
|
}
|
|
}
|
|
|
|
|
|
void DDLWorker::processTask(DDLTask & task, const ZooKeeperPtr & zookeeper)
|
|
{
|
|
LOG_DEBUG(log, "Processing task " << task.entry_name << " (" << task.entry.query << ")");
|
|
|
|
String dummy;
|
|
String active_node_path = task.entry_path + "/active/" + task.host_id_str;
|
|
String finished_node_path = task.entry_path + "/finished/" + task.host_id_str;
|
|
|
|
auto code = zookeeper->tryCreate(active_node_path, "", zkutil::CreateMode::Ephemeral, dummy);
|
|
|
|
if (code == Coordination::ZOK || code == Coordination::ZNODEEXISTS)
|
|
{
|
|
// Ok
|
|
}
|
|
else if (code == Coordination::ZNONODE)
|
|
{
|
|
/// There is no parent
|
|
createStatusDirs(task.entry_path, zookeeper);
|
|
if (Coordination::ZOK != zookeeper->tryCreate(active_node_path, "", zkutil::CreateMode::Ephemeral, dummy))
|
|
throw Coordination::Exception(code, active_node_path);
|
|
}
|
|
else
|
|
throw Coordination::Exception(code, active_node_path);
|
|
|
|
if (!task.was_executed)
|
|
{
|
|
try
|
|
{
|
|
parseQueryAndResolveHost(task);
|
|
|
|
ASTPtr rewritten_ast = task.query_on_cluster->getRewrittenASTWithoutOnCluster(task.address_in_cluster.default_database);
|
|
String rewritten_query = queryToString(rewritten_ast);
|
|
LOG_DEBUG(log, "Executing query: " << rewritten_query);
|
|
|
|
if (auto query_with_table = dynamic_cast<ASTQueryWithTableAndOutput *>(rewritten_ast.get()); query_with_table)
|
|
{
|
|
StoragePtr storage;
|
|
if (!query_with_table->table.empty())
|
|
{
|
|
/// It's not CREATE DATABASE
|
|
auto table_id = context.resolveStorageID(*query_with_table, Context::ResolveOrdinary);
|
|
storage = DatabaseCatalog::instance().tryGetTable(table_id);
|
|
}
|
|
|
|
/// For some reason we check consistency of cluster definition only
|
|
/// in case of ALTER query, but not in case of CREATE/DROP etc.
|
|
/// It's strange, but this behaviour exits for a long and we cannot change it.
|
|
if (storage && query_with_table->as<ASTAlterQuery>())
|
|
checkShardConfig(query_with_table->table, task, storage);
|
|
|
|
if (storage && taskShouldBeExecutedOnLeader(rewritten_ast, storage))
|
|
tryExecuteQueryOnLeaderReplica(task, storage, rewritten_query, task.entry_path, zookeeper);
|
|
else
|
|
tryExecuteQuery(rewritten_query, task, task.execution_status);
|
|
}
|
|
else
|
|
tryExecuteQuery(rewritten_query, task, task.execution_status);
|
|
}
|
|
catch (const Coordination::Exception &)
|
|
{
|
|
throw;
|
|
}
|
|
catch (...)
|
|
{
|
|
tryLogCurrentException(log, "An error occurred before execution of DDL task: ");
|
|
task.execution_status = ExecutionStatus::fromCurrentException("An error occurred before execution");
|
|
}
|
|
|
|
/// We need to distinguish ZK errors occured before and after query executing
|
|
task.was_executed = true;
|
|
}
|
|
|
|
/// FIXME: if server fails right here, the task will be executed twice. We need WAL here.
|
|
|
|
/// Delete active flag and create finish flag
|
|
Coordination::Requests ops;
|
|
ops.emplace_back(zkutil::makeRemoveRequest(active_node_path, -1));
|
|
ops.emplace_back(zkutil::makeCreateRequest(finished_node_path, task.execution_status.serializeText(), zkutil::CreateMode::Persistent));
|
|
zookeeper->multi(ops);
|
|
}
|
|
|
|
|
|
bool DDLWorker::taskShouldBeExecutedOnLeader(const ASTPtr ast_ddl, const StoragePtr storage)
|
|
{
|
|
/// Pure DROP queries have to be executed on each node separately
|
|
if (auto query = ast_ddl->as<ASTDropQuery>(); query && query->kind != ASTDropQuery::Kind::Truncate)
|
|
return false;
|
|
|
|
if (!ast_ddl->as<ASTAlterQuery>() && !ast_ddl->as<ASTOptimizeQuery>() && !ast_ddl->as<ASTDropQuery>())
|
|
return false;
|
|
|
|
return storage->supportsReplication();
|
|
}
|
|
|
|
|
|
void DDLWorker::checkShardConfig(const String & table, const DDLTask & task, StoragePtr storage) const
|
|
{
|
|
const auto & shard_info = task.cluster->getShardsInfo().at(task.host_shard_num);
|
|
bool config_is_replicated_shard = shard_info.hasInternalReplication();
|
|
|
|
if (dynamic_cast<const StorageDistributed *>(storage.get()))
|
|
{
|
|
LOG_TRACE(log, "Table " + backQuote(table) + " is distributed, skip checking config.");
|
|
return;
|
|
}
|
|
|
|
if (storage->supportsReplication() && !config_is_replicated_shard)
|
|
{
|
|
throw Exception("Table " + backQuote(table) + " is replicated, but shard #" + toString(task.host_shard_num + 1) +
|
|
" isn't replicated according to its cluster definition."
|
|
" Possibly <internal_replication>true</internal_replication> is forgotten in the cluster config.",
|
|
ErrorCodes::INCONSISTENT_CLUSTER_DEFINITION);
|
|
}
|
|
|
|
if (!storage->supportsReplication() && config_is_replicated_shard)
|
|
{
|
|
throw Exception("Table " + backQuote(table) + " isn't replicated, but shard #" + toString(task.host_shard_num + 1) +
|
|
" is replicated according to its cluster definition", ErrorCodes::INCONSISTENT_CLUSTER_DEFINITION);
|
|
}
|
|
}
|
|
|
|
|
|
bool DDLWorker::tryExecuteQueryOnLeaderReplica(
|
|
DDLTask & task,
|
|
StoragePtr storage,
|
|
const String & rewritten_query,
|
|
const String & node_path,
|
|
const ZooKeeperPtr & zookeeper)
|
|
{
|
|
StorageReplicatedMergeTree * replicated_storage = dynamic_cast<StorageReplicatedMergeTree *>(storage.get());
|
|
|
|
/// If we will develop new replicated storage
|
|
if (!replicated_storage)
|
|
throw Exception("Storage type '" + storage->getName() + "' is not supported by distributed DDL", ErrorCodes::NOT_IMPLEMENTED);
|
|
|
|
/// Generate unique name for shard node, it will be used to execute the query by only single host
|
|
/// Shard node name has format 'replica_name1,replica_name2,...,replica_nameN'
|
|
/// Where replica_name is 'replica_config_host_name:replica_port'
|
|
auto get_shard_name = [] (const Cluster::Addresses & shard_addresses)
|
|
{
|
|
Strings replica_names;
|
|
for (const Cluster::Address & address : shard_addresses)
|
|
replica_names.emplace_back(address.readableString());
|
|
std::sort(replica_names.begin(), replica_names.end());
|
|
|
|
String res;
|
|
for (auto it = replica_names.begin(); it != replica_names.end(); ++it)
|
|
res += *it + (std::next(it) != replica_names.end() ? "," : "");
|
|
|
|
return res;
|
|
};
|
|
|
|
String shard_node_name = get_shard_name(task.cluster->getShardsAddresses().at(task.host_shard_num));
|
|
String shard_path = node_path + "/shards/" + shard_node_name;
|
|
String is_executed_path = shard_path + "/executed";
|
|
zookeeper->createAncestors(shard_path + "/");
|
|
|
|
auto is_already_executed = [&]() -> bool
|
|
{
|
|
String executed_by;
|
|
if (zookeeper->tryGet(is_executed_path, executed_by))
|
|
{
|
|
LOG_DEBUG(log, "Task " << task.entry_name << " has already been executed by leader replica ("
|
|
<< executed_by << ") of the same shard.");
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
};
|
|
|
|
pcg64 rng(randomSeed());
|
|
|
|
auto lock = createSimpleZooKeeperLock(zookeeper, shard_path, "lock", task.host_id_str);
|
|
static const size_t max_tries = 20;
|
|
bool executed_by_leader = false;
|
|
for (size_t num_tries = 0; num_tries < max_tries; ++num_tries)
|
|
{
|
|
if (is_already_executed())
|
|
{
|
|
executed_by_leader = true;
|
|
break;
|
|
}
|
|
|
|
StorageReplicatedMergeTree::Status status;
|
|
replicated_storage->getStatus(status);
|
|
|
|
/// Leader replica take lock
|
|
if (status.is_leader && lock->tryLock())
|
|
{
|
|
if (is_already_executed())
|
|
{
|
|
executed_by_leader = true;
|
|
break;
|
|
}
|
|
|
|
/// If the leader will unexpectedly changed this method will return false
|
|
/// and on the next iteration new leader will take lock
|
|
if (tryExecuteQuery(rewritten_query, task, task.execution_status))
|
|
{
|
|
zookeeper->create(is_executed_path, task.host_id_str, zkutil::CreateMode::Persistent);
|
|
executed_by_leader = true;
|
|
break;
|
|
}
|
|
|
|
}
|
|
|
|
/// Does nothing if wasn't previously locked
|
|
lock->unlock();
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(std::uniform_int_distribution<int>(0, 1000)(rng)));
|
|
}
|
|
|
|
/// Not executed by leader so was not executed at all
|
|
if (!executed_by_leader)
|
|
{
|
|
task.execution_status = ExecutionStatus(ErrorCodes::NOT_IMPLEMENTED,
|
|
"Cannot execute replicated DDL query on leader");
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
|
|
void DDLWorker::cleanupQueue(Int64 current_time_seconds, const ZooKeeperPtr & zookeeper)
|
|
{
|
|
LOG_DEBUG(log, "Cleaning queue");
|
|
|
|
Strings queue_nodes = zookeeper->getChildren(queue_dir);
|
|
filterAndSortQueueNodes(queue_nodes);
|
|
|
|
size_t num_outdated_nodes = (queue_nodes.size() > max_tasks_in_queue) ? queue_nodes.size() - max_tasks_in_queue : 0;
|
|
auto first_non_outdated_node = queue_nodes.begin() + num_outdated_nodes;
|
|
|
|
for (auto it = queue_nodes.cbegin(); it < queue_nodes.cend(); ++it)
|
|
{
|
|
if (stop_flag)
|
|
return;
|
|
|
|
String node_name = *it;
|
|
String node_path = queue_dir + "/" + node_name;
|
|
String lock_path = node_path + "/lock";
|
|
|
|
Coordination::Stat stat;
|
|
String dummy;
|
|
|
|
try
|
|
{
|
|
/// Already deleted
|
|
if (!zookeeper->exists(node_path, &stat))
|
|
continue;
|
|
|
|
/// Delete node if its lifetime is expired (according to task_max_lifetime parameter)
|
|
constexpr UInt64 zookeeper_time_resolution = 1000;
|
|
Int64 zookeeper_time_seconds = stat.ctime / zookeeper_time_resolution;
|
|
bool node_lifetime_is_expired = zookeeper_time_seconds + task_max_lifetime < current_time_seconds;
|
|
|
|
/// If too many nodes in task queue (> max_tasks_in_queue), delete oldest one
|
|
bool node_is_outside_max_window = it < first_non_outdated_node;
|
|
|
|
if (!node_lifetime_is_expired && !node_is_outside_max_window)
|
|
continue;
|
|
|
|
/// Skip if there are active nodes (it is weak guard)
|
|
if (zookeeper->exists(node_path + "/active", &stat) && stat.numChildren > 0)
|
|
{
|
|
LOG_INFO(log, "Task " << node_name << " should be deleted, but there are active workers. Skipping it.");
|
|
continue;
|
|
}
|
|
|
|
/// Usage of the lock is not necessary now (tryRemoveRecursive correctly removes node in a presence of concurrent cleaners)
|
|
/// But the lock will be required to implement system.distributed_ddl_queue table
|
|
auto lock = createSimpleZooKeeperLock(zookeeper, node_path, "lock", host_fqdn_id);
|
|
if (!lock->tryLock())
|
|
{
|
|
LOG_INFO(log, "Task " << node_name << " should be deleted, but it is locked. Skipping it.");
|
|
continue;
|
|
}
|
|
|
|
if (node_lifetime_is_expired)
|
|
LOG_INFO(log, "Lifetime of task " << node_name << " is expired, deleting it");
|
|
else if (node_is_outside_max_window)
|
|
LOG_INFO(log, "Task " << node_name << " is outdated, deleting it");
|
|
|
|
/// Deleting
|
|
{
|
|
Strings childs = zookeeper->getChildren(node_path);
|
|
for (const String & child : childs)
|
|
{
|
|
if (child != "lock")
|
|
zookeeper->tryRemoveRecursive(node_path + "/" + child);
|
|
}
|
|
|
|
/// Remove the lock node and its parent atomically
|
|
Coordination::Requests ops;
|
|
ops.emplace_back(zkutil::makeRemoveRequest(lock_path, -1));
|
|
ops.emplace_back(zkutil::makeRemoveRequest(node_path, -1));
|
|
zookeeper->multi(ops);
|
|
|
|
lock->unlockAssumeLockNodeRemovedManually();
|
|
}
|
|
}
|
|
catch (...)
|
|
{
|
|
LOG_INFO(log, "An error occured while checking and cleaning task " + node_name + " from queue: " + getCurrentExceptionMessage(false));
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/// Try to create nonexisting "status" dirs for a node
|
|
void DDLWorker::createStatusDirs(const std::string & node_path, const ZooKeeperPtr & zookeeper)
|
|
{
|
|
Coordination::Requests ops;
|
|
{
|
|
Coordination::CreateRequest request;
|
|
request.path = node_path + "/active";
|
|
ops.emplace_back(std::make_shared<Coordination::CreateRequest>(std::move(request)));
|
|
}
|
|
{
|
|
Coordination::CreateRequest request;
|
|
request.path = node_path + "/finished";
|
|
ops.emplace_back(std::make_shared<Coordination::CreateRequest>(std::move(request)));
|
|
}
|
|
Coordination::Responses responses;
|
|
int code = zookeeper->tryMulti(ops, responses);
|
|
if (code && code != Coordination::ZNODEEXISTS)
|
|
throw Coordination::Exception(code);
|
|
}
|
|
|
|
|
|
String DDLWorker::enqueueQuery(DDLLogEntry & entry)
|
|
{
|
|
if (entry.hosts.empty())
|
|
throw Exception("Empty host list in a distributed DDL task", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
auto zookeeper = getAndSetZooKeeper();
|
|
|
|
String query_path_prefix = queue_dir + "/query-";
|
|
zookeeper->createAncestors(query_path_prefix);
|
|
|
|
String node_path = zookeeper->create(query_path_prefix, entry.toString(), zkutil::CreateMode::PersistentSequential);
|
|
|
|
/// Optional step
|
|
try
|
|
{
|
|
createStatusDirs(node_path, zookeeper);
|
|
}
|
|
catch (...)
|
|
{
|
|
LOG_INFO(log, "An error occurred while creating auxiliary ZooKeeper directories in " << node_path << " . They will be created later"
|
|
<< ". Error : " << getCurrentExceptionMessage(true));
|
|
}
|
|
|
|
return node_path;
|
|
}
|
|
|
|
|
|
void DDLWorker::runMainThread()
|
|
{
|
|
setThreadName("DDLWorker");
|
|
LOG_DEBUG(log, "Started DDLWorker thread");
|
|
|
|
bool initialized = false;
|
|
do
|
|
{
|
|
try
|
|
{
|
|
auto zookeeper = getAndSetZooKeeper();
|
|
zookeeper->createAncestors(queue_dir + "/");
|
|
initialized = true;
|
|
}
|
|
catch (const Coordination::Exception & e)
|
|
{
|
|
if (!Coordination::isHardwareError(e.code))
|
|
throw; /// A logical error.
|
|
|
|
tryLogCurrentException(__PRETTY_FUNCTION__);
|
|
|
|
/// Avoid busy loop when ZooKeeper is not available.
|
|
sleepForSeconds(1);
|
|
}
|
|
catch (...)
|
|
{
|
|
tryLogCurrentException(log, "Terminating. Cannot initialize DDL queue.");
|
|
return;
|
|
}
|
|
}
|
|
while (!initialized && !stop_flag);
|
|
|
|
while (!stop_flag)
|
|
{
|
|
try
|
|
{
|
|
attachToThreadGroup();
|
|
|
|
cleanup_event->set();
|
|
processTasks();
|
|
|
|
LOG_DEBUG(log, "Waiting a watch");
|
|
queue_updated_event->wait();
|
|
}
|
|
catch (const Coordination::Exception & e)
|
|
{
|
|
if (Coordination::isHardwareError(e.code))
|
|
{
|
|
LOG_DEBUG(log, "Recovering ZooKeeper session after: " << getCurrentExceptionMessage(false));
|
|
|
|
while (!stop_flag)
|
|
{
|
|
try
|
|
{
|
|
getAndSetZooKeeper();
|
|
break;
|
|
}
|
|
catch (...)
|
|
{
|
|
tryLogCurrentException(__PRETTY_FUNCTION__);
|
|
|
|
using namespace std::chrono_literals;
|
|
std::this_thread::sleep_for(5s);
|
|
}
|
|
}
|
|
}
|
|
else if (e.code == Coordination::ZNONODE)
|
|
{
|
|
LOG_ERROR(log, "ZooKeeper error: " << getCurrentExceptionMessage(true));
|
|
}
|
|
else
|
|
{
|
|
LOG_ERROR(log, "Unexpected ZooKeeper error: " << getCurrentExceptionMessage(true) << ". Terminating.");
|
|
return;
|
|
}
|
|
}
|
|
catch (...)
|
|
{
|
|
tryLogCurrentException(log, "Unexpected error, will terminate:");
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void DDLWorker::runCleanupThread()
|
|
{
|
|
setThreadName("DDLWorkerClnr");
|
|
LOG_DEBUG(log, "Started DDLWorker cleanup thread");
|
|
|
|
Int64 last_cleanup_time_seconds = 0;
|
|
while (!stop_flag)
|
|
{
|
|
try
|
|
{
|
|
cleanup_event->wait();
|
|
if (stop_flag)
|
|
break;
|
|
|
|
Int64 current_time_seconds = Poco::Timestamp().epochTime();
|
|
if (last_cleanup_time_seconds && current_time_seconds < last_cleanup_time_seconds + cleanup_delay_period)
|
|
{
|
|
LOG_TRACE(log, "Too early to clean queue, will do it later.");
|
|
continue;
|
|
}
|
|
|
|
auto zookeeper = tryGetZooKeeper();
|
|
if (zookeeper->expired())
|
|
continue;
|
|
|
|
cleanupQueue(current_time_seconds, zookeeper);
|
|
last_cleanup_time_seconds = current_time_seconds;
|
|
}
|
|
catch (...)
|
|
{
|
|
tryLogCurrentException(log, __PRETTY_FUNCTION__);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
class DDLQueryStatusInputStream : public IBlockInputStream
|
|
{
|
|
public:
|
|
|
|
DDLQueryStatusInputStream(const String & zk_node_path, const DDLLogEntry & entry, const Context & context_)
|
|
: node_path(zk_node_path), context(context_), watch(CLOCK_MONOTONIC_COARSE), log(&Logger::get("DDLQueryStatusInputStream"))
|
|
{
|
|
sample = Block{
|
|
{std::make_shared<DataTypeString>(), "host"},
|
|
{std::make_shared<DataTypeUInt16>(), "port"},
|
|
{std::make_shared<DataTypeInt64>(), "status"},
|
|
{std::make_shared<DataTypeString>(), "error"},
|
|
{std::make_shared<DataTypeUInt64>(), "num_hosts_remaining"},
|
|
{std::make_shared<DataTypeUInt64>(), "num_hosts_active"},
|
|
};
|
|
|
|
for (const HostID & host: entry.hosts)
|
|
waiting_hosts.emplace(host.toString());
|
|
|
|
addTotalRowsApprox(entry.hosts.size());
|
|
|
|
timeout_seconds = context.getSettingsRef().distributed_ddl_task_timeout;
|
|
}
|
|
|
|
String getName() const override
|
|
{
|
|
return "DDLQueryStatusInputStream";
|
|
}
|
|
|
|
Block getHeader() const override { return sample; }
|
|
|
|
Block readImpl() override
|
|
{
|
|
Block res;
|
|
if (num_hosts_finished >= waiting_hosts.size())
|
|
{
|
|
if (first_exception)
|
|
throw Exception(*first_exception);
|
|
|
|
return res;
|
|
}
|
|
|
|
auto zookeeper = context.getZooKeeper();
|
|
size_t try_number = 0;
|
|
|
|
while (res.rows() == 0)
|
|
{
|
|
if (isCancelled())
|
|
{
|
|
if (first_exception)
|
|
throw Exception(*first_exception);
|
|
|
|
return res;
|
|
}
|
|
|
|
if (timeout_seconds >= 0 && watch.elapsedSeconds() > timeout_seconds)
|
|
{
|
|
size_t num_unfinished_hosts = waiting_hosts.size() - num_hosts_finished;
|
|
size_t num_active_hosts = current_active_hosts.size();
|
|
|
|
std::stringstream msg;
|
|
msg << "Watching task " << node_path << " is executing longer than distributed_ddl_task_timeout"
|
|
<< " (=" << timeout_seconds << ") seconds."
|
|
<< " There are " << num_unfinished_hosts << " unfinished hosts"
|
|
<< " (" << num_active_hosts << " of them are currently active)"
|
|
<< ", they are going to execute the query in background";
|
|
|
|
throw Exception(msg.str(), ErrorCodes::TIMEOUT_EXCEEDED);
|
|
}
|
|
|
|
if (num_hosts_finished != 0 || try_number != 0)
|
|
{
|
|
auto current_sleep_for = std::chrono::milliseconds(std::min(static_cast<size_t>(1000), 50 * (try_number + 1)));
|
|
std::this_thread::sleep_for(current_sleep_for);
|
|
}
|
|
|
|
/// TODO: add shared lock
|
|
if (!zookeeper->exists(node_path))
|
|
{
|
|
throw Exception("Cannot provide query execution status. The query's node " + node_path
|
|
+ " has been deleted by the cleaner since it was finished (or its lifetime is expired)",
|
|
ErrorCodes::UNFINISHED);
|
|
}
|
|
|
|
Strings new_hosts = getNewAndUpdate(getChildrenAllowNoNode(zookeeper, node_path + "/finished"));
|
|
++try_number;
|
|
if (new_hosts.empty())
|
|
continue;
|
|
|
|
current_active_hosts = getChildrenAllowNoNode(zookeeper, node_path + "/active");
|
|
|
|
MutableColumns columns = sample.cloneEmptyColumns();
|
|
for (const String & host_id : new_hosts)
|
|
{
|
|
ExecutionStatus status(-1, "Cannot obtain error message");
|
|
{
|
|
String status_data;
|
|
if (zookeeper->tryGet(node_path + "/finished/" + host_id, status_data))
|
|
status.tryDeserializeText(status_data);
|
|
}
|
|
|
|
auto [host, port] = Cluster::Address::fromString(host_id);
|
|
|
|
if (status.code != 0 && first_exception == nullptr)
|
|
first_exception = std::make_unique<Exception>("There was an error on [" + host + ":" + toString(port) + "]: " + status.message, status.code);
|
|
|
|
++num_hosts_finished;
|
|
|
|
columns[0]->insert(host);
|
|
columns[1]->insert(port);
|
|
columns[2]->insert(status.code);
|
|
columns[3]->insert(status.message);
|
|
columns[4]->insert(waiting_hosts.size() - num_hosts_finished);
|
|
columns[5]->insert(current_active_hosts.size());
|
|
}
|
|
res = sample.cloneWithColumns(std::move(columns));
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
Block getSampleBlock() const
|
|
{
|
|
return sample.cloneEmpty();
|
|
}
|
|
|
|
~DDLQueryStatusInputStream() override = default;
|
|
|
|
private:
|
|
|
|
static Strings getChildrenAllowNoNode(const std::shared_ptr<zkutil::ZooKeeper> & zookeeper, const String & node_path)
|
|
{
|
|
Strings res;
|
|
int code = zookeeper->tryGetChildren(node_path, res);
|
|
if (code && code != Coordination::ZNONODE)
|
|
throw Coordination::Exception(code, node_path);
|
|
return res;
|
|
}
|
|
|
|
Strings getNewAndUpdate(const Strings & current_list_of_finished_hosts)
|
|
{
|
|
Strings diff;
|
|
for (const String & host : current_list_of_finished_hosts)
|
|
{
|
|
if (!waiting_hosts.count(host))
|
|
{
|
|
if (!ignoring_hosts.count(host))
|
|
{
|
|
ignoring_hosts.emplace(host);
|
|
LOG_INFO(log, "Unexpected host " << host << " appeared " << " in task " << node_path);
|
|
}
|
|
continue;
|
|
}
|
|
|
|
if (!finished_hosts.count(host))
|
|
{
|
|
diff.emplace_back(host);
|
|
finished_hosts.emplace(host);
|
|
}
|
|
}
|
|
|
|
return diff;
|
|
}
|
|
|
|
private:
|
|
String node_path;
|
|
const Context & context;
|
|
Stopwatch watch;
|
|
Logger * log;
|
|
|
|
Block sample;
|
|
|
|
NameSet waiting_hosts; /// hosts from task host list
|
|
NameSet finished_hosts; /// finished hosts from host list
|
|
NameSet ignoring_hosts; /// appeared hosts that are not in hosts list
|
|
Strings current_active_hosts; /// Hosts that were in active state at the last check
|
|
size_t num_hosts_finished = 0;
|
|
|
|
/// Save the first detected error and throw it at the end of execution
|
|
std::unique_ptr<Exception> first_exception;
|
|
|
|
Int64 timeout_seconds = 120;
|
|
};
|
|
|
|
|
|
BlockIO executeDDLQueryOnCluster(const ASTPtr & query_ptr_, const Context & context, AccessRightsElements && query_required_access)
|
|
{
|
|
/// Remove FORMAT <fmt> and INTO OUTFILE <file> if exists
|
|
ASTPtr query_ptr = query_ptr_->clone();
|
|
ASTQueryWithOutput::resetOutputASTIfExist(*query_ptr);
|
|
|
|
// XXX: serious design flaw since `ASTQueryWithOnCluster` is not inherited from `IAST`!
|
|
auto * query = dynamic_cast<ASTQueryWithOnCluster *>(query_ptr.get());
|
|
if (!query)
|
|
{
|
|
throw Exception("Distributed execution is not supported for such DDL queries", ErrorCodes::NOT_IMPLEMENTED);
|
|
}
|
|
|
|
if (!context.getSettingsRef().allow_distributed_ddl)
|
|
throw Exception("Distributed DDL queries are prohibited for the user", ErrorCodes::QUERY_IS_PROHIBITED);
|
|
|
|
if (const auto * query_alter = query_ptr->as<ASTAlterQuery>())
|
|
{
|
|
for (const auto & command : query_alter->command_list->commands)
|
|
{
|
|
if (!isSupportedAlterType(command->type))
|
|
throw Exception("Unsupported type of ALTER query", ErrorCodes::NOT_IMPLEMENTED);
|
|
}
|
|
}
|
|
|
|
query->cluster = context.getMacros()->expand(query->cluster);
|
|
ClusterPtr cluster = context.getCluster(query->cluster);
|
|
DDLWorker & ddl_worker = context.getDDLWorker();
|
|
|
|
/// Enumerate hosts which will be used to send query.
|
|
Cluster::AddressesWithFailover shards = cluster->getShardsAddresses();
|
|
std::vector<HostID> hosts;
|
|
for (const auto & shard : shards)
|
|
{
|
|
for (const auto & addr : shard)
|
|
hosts.emplace_back(addr);
|
|
}
|
|
|
|
if (hosts.empty())
|
|
throw Exception("No hosts defined to execute distributed DDL query", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
/// The current database in a distributed query need to be replaced with either
|
|
/// the local current database or a shard's default database.
|
|
bool need_replace_current_database
|
|
= (std::find_if(
|
|
query_required_access.begin(),
|
|
query_required_access.end(),
|
|
[](const AccessRightsElement & elem) { return elem.isEmptyDatabase(); })
|
|
!= query_required_access.end());
|
|
|
|
if (need_replace_current_database)
|
|
{
|
|
bool use_local_default_database = false;
|
|
Strings shard_default_databases;
|
|
for (const auto & shard : shards)
|
|
{
|
|
for (const auto & addr : shard)
|
|
{
|
|
if (!addr.default_database.empty())
|
|
shard_default_databases.push_back(addr.default_database);
|
|
else
|
|
use_local_default_database = true;
|
|
}
|
|
}
|
|
std::sort(shard_default_databases.begin(), shard_default_databases.end());
|
|
shard_default_databases.erase(std::unique(shard_default_databases.begin(), shard_default_databases.end()), shard_default_databases.end());
|
|
assert(use_local_default_database || !shard_default_databases.empty());
|
|
|
|
if (use_local_default_database && !shard_default_databases.empty())
|
|
throw Exception("Mixed local default DB and shard default DB in DDL query", ErrorCodes::NOT_IMPLEMENTED);
|
|
|
|
if (use_local_default_database)
|
|
{
|
|
const String & current_database = context.getCurrentDatabase();
|
|
AddDefaultDatabaseVisitor visitor(current_database);
|
|
visitor.visitDDL(query_ptr);
|
|
|
|
query_required_access.replaceEmptyDatabase(current_database);
|
|
}
|
|
else
|
|
{
|
|
size_t old_num_elements = query_required_access.size();
|
|
for (size_t i = 0; i != old_num_elements; ++i)
|
|
{
|
|
auto & element = query_required_access[i];
|
|
if (element.isEmptyDatabase())
|
|
{
|
|
element.setDatabase(shard_default_databases[0]);
|
|
for (size_t j = 1; j != shard_default_databases.size(); ++j)
|
|
{
|
|
query_required_access.push_back(element);
|
|
query_required_access.back().setDatabase(shard_default_databases[j]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Check access rights, assume that all servers have the same users config
|
|
context.checkAccess(query_required_access);
|
|
|
|
DDLLogEntry entry;
|
|
entry.hosts = std::move(hosts);
|
|
entry.query = queryToString(query_ptr);
|
|
entry.initiator = ddl_worker.getCommonHostID();
|
|
String node_path = ddl_worker.enqueueQuery(entry);
|
|
|
|
BlockIO io;
|
|
if (context.getSettingsRef().distributed_ddl_task_timeout == 0)
|
|
return io;
|
|
|
|
auto stream = std::make_shared<DDLQueryStatusInputStream>(node_path, entry, context);
|
|
io.in = std::move(stream);
|
|
return io;
|
|
}
|
|
|
|
|
|
}
|