2012-05-21 20:38:34 +00:00
|
|
|
#include <DB/Parsers/formatAST.h>
|
|
|
|
|
|
|
|
#include <DB/DataStreams/RemoteBlockInputStream.h>
|
2014-02-11 17:10:48 +00:00
|
|
|
#include <DB/DataStreams/RemoveColumnsBlockInputStream.h>
|
2012-05-21 20:38:34 +00:00
|
|
|
|
|
|
|
#include <DB/Storages/StorageDistributed.h>
|
|
|
|
|
2013-11-28 10:31:17 +00:00
|
|
|
#include <Poco/Net/NetworkInterface.h>
|
2014-01-22 14:24:05 +00:00
|
|
|
#include <DB/Client/ConnectionPool.h>
|
2013-11-28 10:31:17 +00:00
|
|
|
|
|
|
|
#include <DB/Interpreters/InterpreterSelectQuery.h>
|
2014-07-11 08:12:03 +00:00
|
|
|
#include <DB/Interpreters/InterpreterAlterQuery.h>
|
2013-11-28 10:31:17 +00:00
|
|
|
#include <boost/bind.hpp>
|
2014-02-11 17:10:48 +00:00
|
|
|
#include <DB/Core/Field.h>
|
2012-05-21 20:38:34 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2012-11-06 17:04:38 +00:00
|
|
|
StorageDistributed::StorageDistributed(
|
|
|
|
const std::string & name_,
|
|
|
|
NamesAndTypesListPtr columns_,
|
|
|
|
const String & remote_database_,
|
|
|
|
const String & remote_table_,
|
2013-12-07 16:51:29 +00:00
|
|
|
Cluster & cluster_,
|
2014-06-12 19:23:06 +00:00
|
|
|
const Context & context_)
|
2012-11-06 17:04:38 +00:00
|
|
|
: name(name_), columns(columns_),
|
|
|
|
remote_database(remote_database_), remote_table(remote_table_),
|
2013-11-28 10:31:17 +00:00
|
|
|
context(context_),
|
2013-12-07 16:51:29 +00:00
|
|
|
cluster(cluster_)
|
2013-11-28 10:31:17 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-02-06 11:26:35 +00:00
|
|
|
StoragePtr StorageDistributed::create(
|
|
|
|
const std::string & name_,
|
|
|
|
NamesAndTypesListPtr columns_,
|
|
|
|
const String & remote_database_,
|
|
|
|
const String & remote_table_,
|
2013-12-10 17:06:57 +00:00
|
|
|
const String & cluster_name,
|
2014-06-12 19:23:06 +00:00
|
|
|
Context & context_)
|
2013-02-06 11:26:35 +00:00
|
|
|
{
|
2013-12-10 17:06:57 +00:00
|
|
|
context_.initClusters();
|
2014-06-12 19:23:06 +00:00
|
|
|
return (new StorageDistributed(name_, columns_, remote_database_, remote_table_, context_.getCluster(cluster_name), context_))->thisPtr();
|
2013-02-06 11:26:35 +00:00
|
|
|
}
|
|
|
|
|
2014-02-07 15:11:57 +00:00
|
|
|
|
|
|
|
StoragePtr StorageDistributed::create(
|
|
|
|
const std::string & name_,
|
|
|
|
NamesAndTypesListPtr columns_,
|
|
|
|
const String & remote_database_,
|
|
|
|
const String & remote_table_,
|
2014-02-23 02:27:09 +00:00
|
|
|
SharedPtr<Cluster> & owned_cluster_,
|
2014-06-12 19:23:06 +00:00
|
|
|
Context & context_)
|
2014-02-07 15:11:57 +00:00
|
|
|
{
|
2014-06-12 19:23:06 +00:00
|
|
|
auto res = new StorageDistributed(name_, columns_, remote_database_, remote_table_, *owned_cluster_, context_);
|
2014-02-23 02:27:09 +00:00
|
|
|
|
|
|
|
/// Захватываем владение объектом-кластером.
|
|
|
|
res->owned_cluster = owned_cluster_;
|
|
|
|
|
|
|
|
return res->thisPtr();
|
2014-02-07 15:11:57 +00:00
|
|
|
}
|
|
|
|
|
2014-04-06 21:59:27 +00:00
|
|
|
ASTPtr StorageDistributed::rewriteQuery(ASTPtr query)
|
2014-01-27 13:52:01 +00:00
|
|
|
{
|
|
|
|
/// Создаем копию запроса.
|
|
|
|
ASTPtr modified_query_ast = query->clone();
|
|
|
|
|
|
|
|
/// Меняем имена таблицы и базы данных
|
2014-06-26 00:58:14 +00:00
|
|
|
ASTSelectQuery & select = typeid_cast<ASTSelectQuery &>(*modified_query_ast);
|
2014-01-27 13:52:01 +00:00
|
|
|
select.database = new ASTIdentifier(StringRange(), remote_database, ASTIdentifier::Database);
|
|
|
|
select.table = new ASTIdentifier(StringRange(), remote_table, ASTIdentifier::Table);
|
|
|
|
|
|
|
|
return modified_query_ast;
|
|
|
|
}
|
|
|
|
|
|
|
|
static String selectToString(ASTPtr query)
|
|
|
|
{
|
2014-06-26 00:58:14 +00:00
|
|
|
ASTSelectQuery & select = typeid_cast<ASTSelectQuery &>(*query);
|
2014-01-27 13:52:01 +00:00
|
|
|
std::stringstream s;
|
|
|
|
formatAST(select, s, 0, false, true);
|
|
|
|
return s.str();
|
|
|
|
}
|
|
|
|
|
2012-05-21 20:38:34 +00:00
|
|
|
BlockInputStreams StorageDistributed::read(
|
|
|
|
const Names & column_names,
|
|
|
|
ASTPtr query,
|
2013-02-01 19:02:04 +00:00
|
|
|
const Settings & settings,
|
2012-05-22 18:32:45 +00:00
|
|
|
QueryProcessingStage::Enum & processed_stage,
|
2012-05-21 20:38:34 +00:00
|
|
|
size_t max_block_size,
|
2012-05-30 04:45:49 +00:00
|
|
|
unsigned threads)
|
2012-05-21 20:38:34 +00:00
|
|
|
{
|
2013-05-08 10:30:29 +00:00
|
|
|
Settings new_settings = settings;
|
2014-02-22 21:50:27 +00:00
|
|
|
new_settings.queue_max_wait_ms = Cluster::saturate(new_settings.queue_max_wait_ms, settings.limits.max_execution_time);
|
2012-05-21 20:38:34 +00:00
|
|
|
|
2014-04-06 21:59:27 +00:00
|
|
|
size_t result_size = cluster.pools.size() + cluster.getLocalNodesNum();
|
2014-02-11 17:10:48 +00:00
|
|
|
|
|
|
|
processed_stage = result_size == 1
|
|
|
|
? QueryProcessingStage::Complete
|
|
|
|
: QueryProcessingStage::WithMergeableState;
|
|
|
|
|
2012-05-21 20:38:34 +00:00
|
|
|
BlockInputStreams res;
|
2014-04-06 21:59:27 +00:00
|
|
|
ASTPtr modified_query_ast = rewriteQuery(query);
|
2012-05-21 20:38:34 +00:00
|
|
|
|
2014-04-07 00:00:23 +00:00
|
|
|
/// Цикл по шардам.
|
2014-02-23 02:27:09 +00:00
|
|
|
for (auto & conn_pool : cluster.pools)
|
2014-01-22 14:24:05 +00:00
|
|
|
{
|
2014-04-06 21:59:27 +00:00
|
|
|
String modified_query = selectToString(modified_query_ast);
|
2014-02-04 15:44:15 +00:00
|
|
|
|
2014-04-06 21:59:27 +00:00
|
|
|
res.push_back(new RemoteBlockInputStream(
|
2014-04-07 00:00:23 +00:00
|
|
|
conn_pool,
|
2014-02-04 15:44:15 +00:00
|
|
|
modified_query,
|
|
|
|
&new_settings,
|
2014-03-13 15:00:06 +00:00
|
|
|
external_tables,
|
2014-04-06 21:59:27 +00:00
|
|
|
processed_stage));
|
2014-01-22 14:24:05 +00:00
|
|
|
}
|
|
|
|
|
2014-04-07 00:00:23 +00:00
|
|
|
/// Добавляем запросы к локальному ClickHouse.
|
2014-04-06 21:59:27 +00:00
|
|
|
if (cluster.getLocalNodesNum() > 0)
|
2013-11-28 10:31:17 +00:00
|
|
|
{
|
|
|
|
DB::Context new_context = context;
|
|
|
|
new_context.setSettings(new_settings);
|
2014-03-13 15:00:06 +00:00
|
|
|
for (auto & it : external_tables)
|
2014-03-19 15:07:29 +00:00
|
|
|
if (!new_context.tryGetExternalTable(it.first))
|
|
|
|
new_context.addExternalTable(it.first, it.second);
|
2014-02-20 20:05:06 +00:00
|
|
|
|
|
|
|
for(size_t i = 0; i < cluster.getLocalNodesNum(); ++i)
|
2013-11-28 10:31:17 +00:00
|
|
|
{
|
2014-02-20 20:05:06 +00:00
|
|
|
InterpreterSelectQuery interpreter(modified_query_ast, new_context, processed_stage);
|
|
|
|
res.push_back(interpreter.execute());
|
2013-11-28 10:31:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-06 21:59:27 +00:00
|
|
|
external_tables.clear();
|
2012-05-21 20:38:34 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2014-07-11 08:12:03 +00:00
|
|
|
void StorageDistributed::alter(const AlterCommands & params, const String & database_name, const String & table_name, Context & context)
|
2013-09-23 12:01:19 +00:00
|
|
|
{
|
2014-07-11 08:12:03 +00:00
|
|
|
auto lock = lockStructureForAlter();
|
|
|
|
params.apply(*columns);
|
|
|
|
InterpreterAlterQuery::updateMetadata(database_name, table_name, *columns, context);
|
2013-09-23 12:01:19 +00:00
|
|
|
}
|
2014-02-04 15:44:15 +00:00
|
|
|
|
2012-05-21 20:38:34 +00:00
|
|
|
}
|