2017-04-01 09:19:00 +00:00
|
|
|
#include <Columns/ColumnString.h>
|
|
|
|
#include <Columns/ColumnArray.h>
|
|
|
|
#include <Columns/ColumnsNumber.h>
|
|
|
|
#include <DataTypes/DataTypeString.h>
|
|
|
|
#include <DataTypes/DataTypesNumber.h>
|
|
|
|
#include <DataTypes/DataTypeDateTime.h>
|
|
|
|
#include <DataTypes/DataTypeArray.h>
|
|
|
|
#include <DataStreams/OneBlockInputStream.h>
|
|
|
|
#include <Storages/System/StorageSystemReplicationQueue.h>
|
|
|
|
#include <Storages/StorageReplicatedMergeTree.h>
|
2017-11-20 05:22:54 +00:00
|
|
|
#include <Storages/VirtualColumnUtils.h>
|
2017-07-13 20:58:19 +00:00
|
|
|
#include <Common/typeid_cast.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Databases/IDatabase.h>
|
2015-09-24 00:21:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
StorageSystemReplicationQueue::StorageSystemReplicationQueue(const std::string & name_)
|
2017-04-01 07:20:54 +00:00
|
|
|
: name(name_)
|
|
|
|
, columns{
|
|
|
|
/// Table properties.
|
2017-12-02 02:47:12 +00:00
|
|
|
{ "database", std::make_shared<DataTypeString>() },
|
|
|
|
{ "table", std::make_shared<DataTypeString>() },
|
|
|
|
{ "replica_name", std::make_shared<DataTypeString>() },
|
2017-04-01 07:20:54 +00:00
|
|
|
/// Constant element properties.
|
2017-12-02 02:47:12 +00:00
|
|
|
{ "position", std::make_shared<DataTypeUInt32>() },
|
|
|
|
{ "node_name", std::make_shared<DataTypeString>() },
|
|
|
|
{ "type", std::make_shared<DataTypeString>() },
|
|
|
|
{ "create_time", std::make_shared<DataTypeDateTime>() },
|
|
|
|
{ "required_quorum", std::make_shared<DataTypeUInt32>() },
|
|
|
|
{ "source_replica", std::make_shared<DataTypeString>() },
|
|
|
|
{ "new_part_name", std::make_shared<DataTypeString>() },
|
2017-05-24 21:38:56 +00:00
|
|
|
{ "parts_to_merge", std::make_shared<DataTypeArray>(std::make_shared<DataTypeString>()) },
|
2017-12-02 02:47:12 +00:00
|
|
|
{ "is_detach", std::make_shared<DataTypeUInt8>() },
|
2017-04-01 07:20:54 +00:00
|
|
|
/// Processing status of item.
|
2017-12-02 02:47:12 +00:00
|
|
|
{ "is_currently_executing", std::make_shared<DataTypeUInt8>() },
|
|
|
|
{ "num_tries", std::make_shared<DataTypeUInt32>() },
|
|
|
|
{ "last_exception", std::make_shared<DataTypeString>() },
|
|
|
|
{ "last_attempt_time", std::make_shared<DataTypeDateTime>() },
|
|
|
|
{ "num_postponed", std::make_shared<DataTypeUInt32>() },
|
|
|
|
{ "postpone_reason", std::make_shared<DataTypeString>() },
|
|
|
|
{ "last_postpone_time", std::make_shared<DataTypeDateTime>() },
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2015-09-24 00:21:02 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BlockInputStreams StorageSystemReplicationQueue::read(
|
2017-04-01 07:20:54 +00:00
|
|
|
const Names & column_names,
|
2017-07-15 03:48:36 +00:00
|
|
|
const SelectQueryInfo & query_info,
|
2017-04-01 07:20:54 +00:00
|
|
|
const Context & context,
|
|
|
|
QueryProcessingStage::Enum & processed_stage,
|
2017-12-02 02:47:12 +00:00
|
|
|
const size_t /*max_block_size*/,
|
|
|
|
const unsigned /*num_streams*/)
|
2015-09-24 00:21:02 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
check(column_names);
|
|
|
|
processed_stage = QueryProcessingStage::FetchColumns;
|
|
|
|
|
|
|
|
std::map<String, std::map<String, StoragePtr>> replicated_tables;
|
|
|
|
for (const auto & db : context.getDatabases())
|
2017-09-11 12:39:01 +00:00
|
|
|
for (auto iterator = db.second->getIterator(context); iterator->isValid(); iterator->next())
|
2017-11-04 16:46:14 +00:00
|
|
|
if (dynamic_cast<const StorageReplicatedMergeTree *>(iterator->table().get()))
|
2017-04-01 07:20:54 +00:00
|
|
|
replicated_tables[db.first][iterator->name()] = iterator->table();
|
|
|
|
|
2017-12-14 01:43:19 +00:00
|
|
|
ColumnWithTypeAndName col_database_to_filter { ColumnString::create(), std::make_shared<DataTypeString>(), "database" };
|
|
|
|
ColumnWithTypeAndName col_table_to_filter { ColumnString::create(), std::make_shared<DataTypeString>(), "table" };
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
for (auto & db : replicated_tables)
|
|
|
|
{
|
|
|
|
for (auto & table : db.second)
|
|
|
|
{
|
|
|
|
col_database_to_filter.column->insert(db.first);
|
|
|
|
col_table_to_filter.column->insert(table.first);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Determine what tables are needed by the conditions in the query.
|
|
|
|
{
|
|
|
|
Block filtered_block { col_database_to_filter, col_table_to_filter };
|
|
|
|
|
2017-07-15 03:48:36 +00:00
|
|
|
VirtualColumnUtils::filterBlockWithQuery(query_info.query, filtered_block, context);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
if (!filtered_block.rows())
|
|
|
|
return BlockInputStreams();
|
|
|
|
|
|
|
|
col_database_to_filter = filtered_block.getByName("database");
|
|
|
|
col_table_to_filter = filtered_block.getByName("table");
|
|
|
|
}
|
|
|
|
|
2017-12-14 01:43:19 +00:00
|
|
|
ColumnWithTypeAndName col_database { ColumnString::create(), std::make_shared<DataTypeString>(), "database" };
|
|
|
|
ColumnWithTypeAndName col_table { ColumnString::create(), std::make_shared<DataTypeString>(), "table" };
|
|
|
|
ColumnWithTypeAndName col_replica_name { ColumnString::create(), std::make_shared<DataTypeString>(), "replica_name" };
|
|
|
|
ColumnWithTypeAndName col_position { ColumnUInt32::create(), std::make_shared<DataTypeUInt32>(), "position" };
|
|
|
|
ColumnWithTypeAndName col_node_name { ColumnString::create(), std::make_shared<DataTypeString>(), "node_name" };
|
|
|
|
ColumnWithTypeAndName col_type { ColumnString::create(), std::make_shared<DataTypeString>(), "type" };
|
|
|
|
ColumnWithTypeAndName col_create_time { ColumnUInt32::create(), std::make_shared<DataTypeDateTime>(), "create_time" };
|
|
|
|
ColumnWithTypeAndName col_required_quorum { ColumnUInt32::create(), std::make_shared<DataTypeUInt32>(), "required_quorum" };
|
|
|
|
ColumnWithTypeAndName col_source_replica { ColumnString::create(), std::make_shared<DataTypeString>(), "source_replica" };
|
|
|
|
ColumnWithTypeAndName col_new_part_name { ColumnString::create(), std::make_shared<DataTypeString>(), "new_part_name" };
|
|
|
|
ColumnWithTypeAndName col_parts_to_merge { ColumnArray::create(ColumnString::create()),
|
2017-04-01 07:20:54 +00:00
|
|
|
std::make_shared<DataTypeArray>(std::make_shared<DataTypeString>()), "parts_to_merge" };
|
2017-12-14 01:43:19 +00:00
|
|
|
ColumnWithTypeAndName col_is_detach { ColumnUInt8::create(), std::make_shared<DataTypeUInt8>(), "is_detach" };
|
|
|
|
ColumnWithTypeAndName col_is_currently_executing { ColumnUInt8::create(), std::make_shared<DataTypeUInt8>(), "is_currently_executing" };
|
|
|
|
ColumnWithTypeAndName col_num_tries { ColumnUInt32::create(), std::make_shared<DataTypeUInt32>(), "num_tries" };
|
|
|
|
ColumnWithTypeAndName col_last_exception { ColumnString::create(), std::make_shared<DataTypeString>(), "last_exception" };
|
|
|
|
ColumnWithTypeAndName col_last_attempt_time { ColumnUInt32::create(), std::make_shared<DataTypeDateTime>(), "last_attempt_time" };
|
|
|
|
ColumnWithTypeAndName col_num_postponed { ColumnUInt32::create(), std::make_shared<DataTypeUInt32>(), "num_postponed" };
|
|
|
|
ColumnWithTypeAndName col_postpone_reason { ColumnString::create(), std::make_shared<DataTypeString>(), "postpone_reason" };
|
|
|
|
ColumnWithTypeAndName col_last_postpone_time { ColumnUInt32::create(), std::make_shared<DataTypeDateTime>(), "last_postpone_time" };
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
StorageReplicatedMergeTree::LogEntriesData queue;
|
|
|
|
String replica_name;
|
|
|
|
|
|
|
|
for (size_t i = 0, tables_size = col_database_to_filter.column->size(); i < tables_size; ++i)
|
|
|
|
{
|
|
|
|
String database = (*col_database_to_filter.column)[i].safeGet<const String &>();
|
|
|
|
String table = (*col_table_to_filter.column)[i].safeGet<const String &>();
|
|
|
|
|
2017-11-04 16:46:14 +00:00
|
|
|
dynamic_cast<StorageReplicatedMergeTree &>(*replicated_tables[database][table]).getQueue(queue, replica_name);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
for (size_t j = 0, queue_size = queue.size(); j < queue_size; ++j)
|
|
|
|
{
|
|
|
|
const auto & entry = queue[j];
|
|
|
|
|
|
|
|
Array parts_to_merge;
|
|
|
|
parts_to_merge.reserve(entry.parts_to_merge.size());
|
|
|
|
for (const auto & name : entry.parts_to_merge)
|
|
|
|
parts_to_merge.push_back(name);
|
|
|
|
|
|
|
|
col_database .column->insert(database);
|
2017-05-24 21:38:56 +00:00
|
|
|
col_table .column->insert(table);
|
2017-04-01 07:20:54 +00:00
|
|
|
col_replica_name .column->insert(replica_name);
|
|
|
|
col_position .column->insert(UInt64(j));
|
2017-05-24 21:38:56 +00:00
|
|
|
col_node_name .column->insert(entry.znode_name);
|
2017-04-01 07:20:54 +00:00
|
|
|
col_type .column->insert(entry.typeToString());
|
2017-05-24 21:38:56 +00:00
|
|
|
col_create_time .column->insert(UInt64(entry.create_time));
|
|
|
|
col_required_quorum .column->insert(UInt64(entry.quorum));
|
|
|
|
col_source_replica .column->insert(entry.source_replica);
|
|
|
|
col_new_part_name .column->insert(entry.new_part_name);
|
|
|
|
col_parts_to_merge .column->insert(parts_to_merge);
|
|
|
|
col_is_detach .column->insert(UInt64(entry.detach));
|
|
|
|
col_is_currently_executing .column->insert(UInt64(entry.currently_executing));
|
|
|
|
col_num_tries .column->insert(UInt64(entry.num_tries));
|
|
|
|
col_last_exception .column->insert(entry.exception ? getExceptionMessage(entry.exception, false) : "");
|
|
|
|
col_last_attempt_time .column->insert(UInt64(entry.last_attempt_time));
|
|
|
|
col_num_postponed .column->insert(UInt64(entry.num_postponed));
|
|
|
|
col_postpone_reason .column->insert(entry.postpone_reason);
|
|
|
|
col_last_postpone_time .column->insert(UInt64(entry.last_postpone_time));
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Block block{
|
|
|
|
col_database,
|
|
|
|
col_table,
|
|
|
|
col_replica_name,
|
|
|
|
col_position,
|
|
|
|
col_node_name,
|
|
|
|
col_type,
|
|
|
|
col_create_time,
|
|
|
|
col_required_quorum,
|
|
|
|
col_source_replica,
|
|
|
|
col_new_part_name,
|
|
|
|
col_parts_to_merge,
|
|
|
|
col_is_detach,
|
|
|
|
col_is_currently_executing,
|
|
|
|
col_num_tries,
|
|
|
|
col_last_exception,
|
|
|
|
col_last_attempt_time,
|
|
|
|
col_num_postponed,
|
|
|
|
col_postpone_reason,
|
|
|
|
col_last_postpone_time,
|
|
|
|
};
|
|
|
|
|
|
|
|
return BlockInputStreams(1, std::make_shared<OneBlockInputStream>(block));
|
2015-09-24 00:21:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|