mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
153 lines
6.1 KiB
C++
153 lines
6.1 KiB
C++
|
#pragma once
|
|||
|
|
|||
|
#include <DB/Storages/IStorage.h>
|
|||
|
#include <DB/Client/ConnectionPool.h>
|
|||
|
#include <DB/Client/ConnectionPoolWithFailover.h>
|
|||
|
#include <DB/Interpreters/Settings.h>
|
|||
|
#include <DB/Interpreters/Context.h>
|
|||
|
#include <DB/Interpreters/ExpressionActions.h>
|
|||
|
#include <common/logger_useful.h>
|
|||
|
|
|||
|
|
|||
|
namespace DB
|
|||
|
{
|
|||
|
|
|||
|
/** Распределённая таблица, находящаяся на нескольких серверах.
|
|||
|
* Использует данные заданной БД и таблицы на каждом сервере.
|
|||
|
*
|
|||
|
* Можно передать один адрес, а не несколько.
|
|||
|
* В этом случае, таблицу можно считать удалённой, а не распределённой.
|
|||
|
*/
|
|||
|
class StorageDistributed : public IStorage
|
|||
|
{
|
|||
|
friend class DistributedBlockOutputStream;
|
|||
|
friend class DirectoryMonitor;
|
|||
|
|
|||
|
public:
|
|||
|
static StoragePtr create(
|
|||
|
const std::string & name_, /// Имя таблицы.
|
|||
|
NamesAndTypesListPtr columns_, /// Список столбцов.
|
|||
|
const NamesAndTypesList & materialized_columns_,
|
|||
|
const NamesAndTypesList & alias_columns_,
|
|||
|
const ColumnDefaults & column_defaults_,
|
|||
|
const String & remote_database_, /// БД на удалённых серверах.
|
|||
|
const String & remote_table_, /// Имя таблицы на удалённых серверах.
|
|||
|
const String & cluster_name,
|
|||
|
Context & context_,
|
|||
|
const ASTPtr & sharding_key_,
|
|||
|
const String & data_path_);
|
|||
|
|
|||
|
static StoragePtr create(
|
|||
|
const std::string & name_, /// Имя таблицы.
|
|||
|
NamesAndTypesListPtr columns_, /// Список столбцов.
|
|||
|
const String & remote_database_, /// БД на удалённых серверах.
|
|||
|
const String & remote_table_, /// Имя таблицы на удалённых серверах.
|
|||
|
SharedPtr<Cluster> & owned_cluster_,
|
|||
|
Context & context_);
|
|||
|
|
|||
|
std::string getName() const override { return "Distributed"; }
|
|||
|
std::string getTableName() const override { return name; }
|
|||
|
bool supportsSampling() const override { return true; }
|
|||
|
bool supportsFinal() const override { return true; }
|
|||
|
bool supportsPrewhere() const override { return true; }
|
|||
|
bool supportsParallelReplicas() const override { return true; }
|
|||
|
|
|||
|
const NamesAndTypesList & getColumnsListImpl() const override { return *columns; }
|
|||
|
NameAndTypePair getColumn(const String & column_name) const override;
|
|||
|
bool hasColumn(const String & column_name) const override;
|
|||
|
|
|||
|
bool isRemote() const override { return true; }
|
|||
|
|
|||
|
BlockInputStreams read(
|
|||
|
const Names & column_names,
|
|||
|
ASTPtr query,
|
|||
|
const Context & context,
|
|||
|
const Settings & settings,
|
|||
|
QueryProcessingStage::Enum & processed_stage,
|
|||
|
size_t max_block_size = DEFAULT_BLOCK_SIZE,
|
|||
|
unsigned threads = 1) override;
|
|||
|
|
|||
|
BlockOutputStreamPtr write(ASTPtr query, const Settings & settings) override;
|
|||
|
|
|||
|
void drop() override {}
|
|||
|
void rename(const String & new_path_to_db, const String & new_database_name, const String & new_table_name) override { name = new_table_name; }
|
|||
|
/// в подтаблицах добавлять и удалять столбы нужно вручную
|
|||
|
/// структура подтаблиц не проверяется
|
|||
|
void alter(const AlterCommands & params, const String & database_name, const String & table_name, const Context & context) override;
|
|||
|
|
|||
|
void shutdown() override;
|
|||
|
|
|||
|
void reshardPartitions(ASTPtr query, const String & database_name,
|
|||
|
const Field & first_partition, const Field & last_partition,
|
|||
|
const WeightedZooKeeperPaths & weighted_zookeeper_paths,
|
|||
|
const ASTPtr & sharding_key_expr, bool do_copy, const Field & coordinator,
|
|||
|
const Settings & settings) override;
|
|||
|
|
|||
|
/// От каждой реплики получить описание соответствующей локальной таблицы.
|
|||
|
BlockInputStreams describe(const Context & context, const Settings & settings);
|
|||
|
|
|||
|
const ExpressionActionsPtr & getShardingKeyExpr() const { return sharding_key_expr; }
|
|||
|
const String & getShardingKeyColumnName() const { return sharding_key_column_name; }
|
|||
|
size_t getShardCount() const;
|
|||
|
const String & getPath() const { return path; }
|
|||
|
std::string getRemoteDatabaseName() const { return remote_database; }
|
|||
|
std::string getRemoteTableName() const { return remote_table; }
|
|||
|
|
|||
|
|
|||
|
private:
|
|||
|
StorageDistributed(
|
|||
|
const std::string & name_,
|
|||
|
NamesAndTypesListPtr columns_,
|
|||
|
const String & remote_database_,
|
|||
|
const String & remote_table_,
|
|||
|
const Cluster & cluster_,
|
|||
|
Context & context_,
|
|||
|
const ASTPtr & sharding_key_ = nullptr,
|
|||
|
const String & data_path_ = String{});
|
|||
|
|
|||
|
StorageDistributed(
|
|||
|
const std::string & name_,
|
|||
|
NamesAndTypesListPtr columns_,
|
|||
|
const NamesAndTypesList & materialized_columns_,
|
|||
|
const NamesAndTypesList & alias_columns_,
|
|||
|
const ColumnDefaults & column_defaults_,
|
|||
|
const String & remote_database_,
|
|||
|
const String & remote_table_,
|
|||
|
const Cluster & cluster_,
|
|||
|
Context & context_,
|
|||
|
const ASTPtr & sharding_key_ = nullptr,
|
|||
|
const String & data_path_ = String{});
|
|||
|
|
|||
|
|
|||
|
/// create directory monitor thread by subdirectory name
|
|||
|
void createDirectoryMonitor(const std::string & name);
|
|||
|
/// create directory monitors for each existing subdirectory
|
|||
|
void createDirectoryMonitors();
|
|||
|
/// ensure directory monitor creation
|
|||
|
void requireDirectoryMonitor(const std::string & name);
|
|||
|
|
|||
|
String name;
|
|||
|
NamesAndTypesListPtr columns;
|
|||
|
String remote_database;
|
|||
|
String remote_table;
|
|||
|
|
|||
|
Context & context;
|
|||
|
Logger * log = &Logger::get("StorageDistributed");
|
|||
|
|
|||
|
/// Используется только, если таблица должна владеть объектом Cluster, которым больше никто не владеет - для реализации TableFunctionRemote.
|
|||
|
SharedPtr<Cluster> owned_cluster;
|
|||
|
|
|||
|
/// Соединения с удалёнными серверами.
|
|||
|
const Cluster & cluster;
|
|||
|
|
|||
|
ExpressionActionsPtr sharding_key_expr;
|
|||
|
String sharding_key_column_name;
|
|||
|
bool write_enabled;
|
|||
|
String path; /// Может быть пустым, если data_path_ пустой. В этом случае, директория для данных для отправки не создаётся.
|
|||
|
|
|||
|
class DirectoryMonitor;
|
|||
|
std::unordered_map<std::string, std::unique_ptr<DirectoryMonitor>> directory_monitors;
|
|||
|
};
|
|||
|
|
|||
|
}
|