2012-05-21 20:38:34 +00:00
|
|
|
|
#include <DB/Parsers/formatAST.h>
|
|
|
|
|
|
|
|
|
|
#include <DB/DataStreams/RemoteBlockInputStream.h>
|
|
|
|
|
|
|
|
|
|
#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>
|
|
|
|
|
#include <boost/bind.hpp>
|
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_,
|
2012-11-06 17:04:38 +00:00
|
|
|
|
const DataTypeFactory & data_type_factory_,
|
2013-05-08 10:30:29 +00:00
|
|
|
|
const Settings & settings,
|
2013-09-23 12:01:19 +00:00
|
|
|
|
const Context & context_,
|
2013-05-08 10:30:29 +00:00
|
|
|
|
const String & sign_column_name_)
|
2012-11-06 17:04:38 +00:00
|
|
|
|
: name(name_), columns(columns_),
|
|
|
|
|
remote_database(remote_database_), remote_table(remote_table_),
|
2013-05-08 10:30:29 +00:00
|
|
|
|
data_type_factory(data_type_factory_),
|
2013-09-23 12:01:19 +00:00
|
|
|
|
sign_column_name(sign_column_name_),
|
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
|
|
|
|
{
|
2014-01-22 14:24:05 +00:00
|
|
|
|
std::vector<String> virtual_columns;
|
|
|
|
|
virtual_columns.push_back("_host");
|
|
|
|
|
virtual_columns.push_back("_port");
|
|
|
|
|
String suffix = VirtualColumnUtils::chooseSuffixForSet(getColumnsList(), virtual_columns);
|
|
|
|
|
_host_column_name = virtual_columns[0] + suffix;
|
|
|
|
|
_port_column_name = virtual_columns[1] + suffix;
|
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,
|
2013-02-06 11:26:35 +00:00
|
|
|
|
const DataTypeFactory & data_type_factory_,
|
2013-05-08 10:30:29 +00:00
|
|
|
|
const Settings & settings,
|
2013-12-10 17:06:57 +00:00
|
|
|
|
Context & context_,
|
2013-05-08 10:30:29 +00:00
|
|
|
|
const String & sign_column_name_)
|
2013-02-06 11:26:35 +00:00
|
|
|
|
{
|
2013-12-10 17:06:57 +00:00
|
|
|
|
context_.initClusters();
|
|
|
|
|
return (new StorageDistributed(name_, columns_, remote_database_, remote_table_, context_.getCluster(cluster_name), data_type_factory_, settings, context_, sign_column_name_))->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_,
|
|
|
|
|
Cluster & cluster_,
|
|
|
|
|
const DataTypeFactory & data_type_factory_,
|
|
|
|
|
const Settings & settings,
|
|
|
|
|
Context & context_,
|
|
|
|
|
const String & sign_column_name_)
|
|
|
|
|
{
|
|
|
|
|
return (new StorageDistributed(name_, columns_, remote_database_, remote_table_, cluster_, data_type_factory_, settings, context_, sign_column_name_))->thisPtr();
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-22 14:24:05 +00:00
|
|
|
|
NameAndTypePair StorageDistributed::getColumn(const String &column_name) const
|
|
|
|
|
{
|
2014-02-04 15:44:15 +00:00
|
|
|
|
if (column_name == _host_column_name)
|
|
|
|
|
return std::make_pair(_host_column_name, new DataTypeString);
|
|
|
|
|
if (column_name == _port_column_name)
|
|
|
|
|
return std::make_pair(_port_column_name, new DataTypeUInt16);
|
|
|
|
|
|
2014-01-22 14:24:05 +00:00
|
|
|
|
return getRealColumn(column_name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool StorageDistributed::hasColumn(const String &column_name) const
|
|
|
|
|
{
|
2014-02-04 15:44:15 +00:00
|
|
|
|
if (column_name == _host_column_name)
|
|
|
|
|
return true;
|
|
|
|
|
if (column_name == _port_column_name)
|
|
|
|
|
return true;
|
|
|
|
|
|
2014-01-22 14:24:05 +00:00
|
|
|
|
return hasRealColumn(column_name);
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-27 13:52:01 +00:00
|
|
|
|
ASTPtr StorageDistributed::remakeQuery(ASTPtr query, const String & host, size_t port)
|
|
|
|
|
{
|
|
|
|
|
/// Создаем копию запроса.
|
|
|
|
|
ASTPtr modified_query_ast = query->clone();
|
|
|
|
|
|
2014-02-04 15:44:15 +00:00
|
|
|
|
/// Добавляем в запрос значения хоста и порта, если требуется.
|
|
|
|
|
if (!host.empty())
|
|
|
|
|
VirtualColumnUtils::rewriteEntityInAst(modified_query_ast, _host_column_name, host);
|
|
|
|
|
if (port != 0)
|
|
|
|
|
VirtualColumnUtils::rewriteEntityInAst(modified_query_ast, _port_column_name, port);
|
2014-01-27 13:52:01 +00:00
|
|
|
|
|
|
|
|
|
/// Меняем имена таблицы и базы данных
|
|
|
|
|
ASTSelectQuery & select = dynamic_cast<ASTSelectQuery &>(*modified_query_ast);
|
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
ASTSelectQuery & select = dynamic_cast<ASTSelectQuery &>(*query);
|
|
|
|
|
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-12-07 16:51:29 +00:00
|
|
|
|
processed_stage = (cluster.pools.size() + cluster.getLocalNodesNum()) == 1
|
2012-05-22 20:05:43 +00:00
|
|
|
|
? QueryProcessingStage::Complete
|
|
|
|
|
: QueryProcessingStage::WithMergeableState;
|
2013-11-28 10:31:17 +00:00
|
|
|
|
|
2013-05-08 10:30:29 +00:00
|
|
|
|
/// Установим sign_rewrite = 0, чтобы второй раз не переписывать запрос
|
|
|
|
|
Settings new_settings = settings;
|
|
|
|
|
new_settings.sign_rewrite = false;
|
2013-12-07 16:51:29 +00:00
|
|
|
|
new_settings.queue_max_wait_ms = Cluster::saturation(new_settings.queue_max_wait_ms, settings.limits.max_execution_time);
|
2012-05-21 20:38:34 +00:00
|
|
|
|
|
2014-02-04 15:44:15 +00:00
|
|
|
|
/** Запрошены ли виртуальные столбцы?
|
|
|
|
|
* Если да - будем добавлять их в виде констант в запрос, предназначенный для выполнения на удалённом сервере,
|
|
|
|
|
* а также при получении результата с удалённого сервера.
|
|
|
|
|
*/
|
|
|
|
|
bool need_host_column = false;
|
|
|
|
|
bool need_port_column = false;
|
|
|
|
|
|
|
|
|
|
for (const auto & it : column_names)
|
|
|
|
|
{
|
|
|
|
|
if (it == _host_column_name)
|
|
|
|
|
need_host_column = true;
|
|
|
|
|
else if (it == _port_column_name)
|
|
|
|
|
need_port_column = true;
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-21 20:38:34 +00:00
|
|
|
|
BlockInputStreams res;
|
|
|
|
|
|
2013-12-07 16:51:29 +00:00
|
|
|
|
for (ConnectionPools::iterator it = cluster.pools.begin(); it != cluster.pools.end(); ++it)
|
2014-01-22 14:24:05 +00:00
|
|
|
|
{
|
2014-02-04 15:44:15 +00:00
|
|
|
|
String modified_query = selectToString(remakeQuery(
|
|
|
|
|
query,
|
|
|
|
|
need_host_column ? (*it)->get()->getHost() : "",
|
|
|
|
|
need_port_column ? (*it)->get()->getPort() : 0));
|
|
|
|
|
|
|
|
|
|
res.push_back(new RemoteBlockInputStream(
|
|
|
|
|
(*it)->get(&new_settings),
|
|
|
|
|
modified_query,
|
|
|
|
|
&new_settings,
|
|
|
|
|
need_host_column ? _host_column_name : "",
|
|
|
|
|
need_port_column ? _port_column_name : "",
|
|
|
|
|
processed_stage));
|
2014-01-22 14:24:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-01-27 13:52:01 +00:00
|
|
|
|
/// Localhost and 9000 - временное решение, будет испрвлено в ближайшее время.
|
2014-02-04 15:44:15 +00:00
|
|
|
|
ASTPtr modified_query_ast = remakeQuery(
|
|
|
|
|
query,
|
|
|
|
|
need_host_column ? "localhost" : "",
|
|
|
|
|
need_port_column ? 9000 : 0);
|
2013-11-28 10:31:17 +00:00
|
|
|
|
|
2014-02-04 15:44:15 +00:00
|
|
|
|
/// добавляем запросы к локальному ClickHouse
|
2013-11-28 10:31:21 +00:00
|
|
|
|
DB::Context new_context = context;
|
|
|
|
|
new_context.setSettings(new_settings);
|
2013-11-28 10:31:17 +00:00
|
|
|
|
{
|
|
|
|
|
DB::Context new_context = context;
|
|
|
|
|
new_context.setSettings(new_settings);
|
2013-12-07 16:51:29 +00:00
|
|
|
|
for(size_t i = 0; i < cluster.getLocalNodesNum(); ++i)
|
2013-11-28 10:31:17 +00:00
|
|
|
|
{
|
|
|
|
|
InterpreterSelectQuery interpreter(modified_query_ast, new_context, processed_stage);
|
|
|
|
|
res.push_back(interpreter.execute());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-21 20:38:34 +00:00
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-23 12:01:19 +00:00
|
|
|
|
void StorageDistributed::alter(const ASTAlterQuery::Parameters ¶ms)
|
|
|
|
|
{
|
2013-11-13 09:47:12 +00:00
|
|
|
|
alterColumns(params, 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
|
|
|
|
}
|