2012-05-21 20:38:34 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-06-06 17:18:32 +00:00
|
|
|
#include <ext/shared_ptr_helper.h>
|
2016-08-26 21:25:05 +00:00
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Storages/IStorage.h>
|
2020-06-03 23:50:47 +00:00
|
|
|
#include <Storages/Distributed/DirectoryMonitor.h>
|
2021-01-07 14:14:41 +00:00
|
|
|
#include <Storages/Distributed/DistributedSettings.h>
|
2017-05-10 06:49:19 +00:00
|
|
|
#include <Common/SimpleIncrement.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Client/ConnectionPool.h>
|
|
|
|
#include <Client/ConnectionPoolWithFailover.h>
|
2018-07-25 12:31:47 +00:00
|
|
|
#include <Parsers/ASTFunction.h>
|
2016-03-25 11:48:45 +00:00
|
|
|
#include <common/logger_useful.h>
|
2019-04-08 05:13:16 +00:00
|
|
|
#include <Common/ActionBlocker.h>
|
2020-12-23 16:04:05 +00:00
|
|
|
#include <Interpreters/Cluster.h>
|
2012-05-21 20:38:34 +00:00
|
|
|
|
2020-12-23 16:04:05 +00:00
|
|
|
#include <pcg_random.hpp>
|
2012-05-21 20:38:34 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2020-06-13 16:31:28 +00:00
|
|
|
struct Settings;
|
2016-12-08 02:49:04 +00:00
|
|
|
class Context;
|
|
|
|
|
2020-07-22 17:21:08 +00:00
|
|
|
class IVolume;
|
|
|
|
using VolumePtr = std::shared_ptr<IVolume>;
|
2020-01-20 17:54:52 +00:00
|
|
|
|
2021-01-09 12:26:37 +00:00
|
|
|
class IDisk;
|
|
|
|
using DiskPtr = std::shared_ptr<IDisk>;
|
|
|
|
|
2020-02-10 15:50:12 +00:00
|
|
|
class ExpressionActions;
|
|
|
|
using ExpressionActionsPtr = std::shared_ptr<ExpressionActions>;
|
2016-12-08 02:49:04 +00:00
|
|
|
|
2017-04-16 15:00:33 +00:00
|
|
|
/** A distributed table that resides on multiple servers.
|
|
|
|
* Uses data from the specified database and tables on each server.
|
2012-05-30 04:45:49 +00:00
|
|
|
*
|
2017-04-16 15:00:33 +00:00
|
|
|
* You can pass one address, not several.
|
|
|
|
* In this case, the table can be considered remote, rather than distributed.
|
2012-05-21 20:38:34 +00:00
|
|
|
*/
|
2020-03-19 23:48:53 +00:00
|
|
|
class StorageDistributed final : public ext::shared_ptr_helper<StorageDistributed>, public IStorage
|
2012-05-21 20:38:34 +00:00
|
|
|
{
|
2019-08-26 19:07:29 +00:00
|
|
|
friend struct ext::shared_ptr_helper<StorageDistributed>;
|
2017-04-01 07:20:54 +00:00
|
|
|
friend class DistributedBlockOutputStream;
|
|
|
|
friend class StorageDistributedDirectoryMonitor;
|
2021-01-26 18:45:36 +00:00
|
|
|
friend class StorageSystemDistributionQueue;
|
2014-08-15 09:50:05 +00:00
|
|
|
|
2012-05-21 20:38:34 +00:00
|
|
|
public:
|
2017-06-06 18:48:38 +00:00
|
|
|
~StorageDistributed() override;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
std::string getName() const override { return "Distributed"; }
|
2019-07-09 15:40:21 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
bool supportsSampling() const override { return true; }
|
|
|
|
bool supportsFinal() const override { return true; }
|
|
|
|
bool supportsPrewhere() const override { return true; }
|
2020-03-29 07:43:40 +00:00
|
|
|
StoragePolicyPtr getStoragePolicy() const override;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
bool isRemote() const override { return true; }
|
|
|
|
|
2020-09-20 17:52:17 +00:00
|
|
|
QueryProcessingStage::Enum getQueryProcessingStage(const Context &, QueryProcessingStage::Enum /*to_stage*/, SelectQueryInfo &) const override;
|
2018-04-19 14:47:09 +00:00
|
|
|
|
2020-08-03 13:54:14 +00:00
|
|
|
Pipe read(
|
2017-04-01 07:20:54 +00:00
|
|
|
const Names & column_names,
|
2020-06-15 19:08:58 +00:00
|
|
|
const StorageMetadataPtr & /*metadata_snapshot*/,
|
2020-09-20 17:52:17 +00:00
|
|
|
SelectQueryInfo & query_info,
|
2017-04-01 07:20:54 +00:00
|
|
|
const Context & context,
|
2018-04-19 14:47:09 +00:00
|
|
|
QueryProcessingStage::Enum processed_stage,
|
2019-02-18 23:38:44 +00:00
|
|
|
size_t max_block_size,
|
2017-06-02 15:54:39 +00:00
|
|
|
unsigned num_streams) override;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2020-09-25 13:19:26 +00:00
|
|
|
void read(
|
2020-09-18 14:16:53 +00:00
|
|
|
QueryPlan & query_plan,
|
|
|
|
const Names & column_names,
|
|
|
|
const StorageMetadataPtr & metadata_snapshot,
|
2020-11-10 12:02:22 +00:00
|
|
|
SelectQueryInfo & query_info,
|
2020-09-18 14:16:53 +00:00
|
|
|
const Context & context,
|
|
|
|
QueryProcessingStage::Enum processed_stage,
|
2020-09-25 13:03:12 +00:00
|
|
|
size_t /*max_block_size*/,
|
|
|
|
unsigned /*num_streams*/) override;
|
2020-09-18 14:16:53 +00:00
|
|
|
|
2020-08-26 16:41:30 +00:00
|
|
|
bool supportsParallelInsert() const override { return true; }
|
2021-01-26 18:45:36 +00:00
|
|
|
std::optional<UInt64> totalBytes(const Settings &) const override;
|
2020-08-26 16:41:30 +00:00
|
|
|
|
2020-06-15 19:08:58 +00:00
|
|
|
BlockOutputStreamPtr write(const ASTPtr & query, const StorageMetadataPtr & /*metadata_snapshot*/, const Context & context) override;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2021-04-04 10:27:45 +00:00
|
|
|
QueryPipelinePtr distributedWrite(const ASTInsertQuery & query, const Context & context) override;
|
|
|
|
|
2018-06-09 15:48:22 +00:00
|
|
|
/// Removes temporary data in local filesystem.
|
2020-06-18 16:10:47 +00:00
|
|
|
void truncate(const ASTPtr &, const StorageMetadataPtr &, const Context &, TableExclusiveLockHolder &) override;
|
2019-08-27 20:43:08 +00:00
|
|
|
|
2020-04-07 14:05:51 +00:00
|
|
|
void rename(const String & new_path_to_table_data, const StorageID & new_table_id) override;
|
2018-04-21 00:35:20 +00:00
|
|
|
|
2021-02-28 05:24:39 +00:00
|
|
|
void checkAlterIsPossible(const AlterCommands & commands, const Context & context) const override;
|
2019-12-26 18:17:05 +00:00
|
|
|
|
2017-04-16 15:00:33 +00:00
|
|
|
/// in the sub-tables, you need to manually add and delete columns
|
|
|
|
/// the structure of the sub-table is not checked
|
2020-06-18 16:10:47 +00:00
|
|
|
void alter(const AlterCommands & params, const Context & context, TableLockHolder & table_lock_holder) override;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-06-06 17:06:14 +00:00
|
|
|
void startup() override;
|
2017-04-01 07:20:54 +00:00
|
|
|
void shutdown() override;
|
2020-07-16 20:35:23 +00:00
|
|
|
void drop() override;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2020-11-01 17:38:43 +00:00
|
|
|
bool storesDataOnDisk() const override { return true; }
|
2020-01-20 17:54:52 +00:00
|
|
|
Strings getDataPaths() const override;
|
2018-02-21 19:26:59 +00:00
|
|
|
|
2021-01-26 18:45:36 +00:00
|
|
|
ActionLock getActionLock(StorageActionBlockType type) override;
|
|
|
|
|
|
|
|
NamesAndTypesList getVirtuals() const override;
|
|
|
|
|
|
|
|
/// Used by InterpreterInsertQuery
|
|
|
|
std::string getRemoteDatabaseName() const { return remote_database; }
|
|
|
|
std::string getRemoteTableName() const { return remote_table; }
|
|
|
|
/// Returns empty string if tables is used by TableFunctionRemote
|
|
|
|
std::string getClusterName() const { return cluster_name; }
|
|
|
|
ClusterPtr getCluster() const;
|
|
|
|
|
|
|
|
/// Used by InterpreterSystemQuery
|
|
|
|
void flushClusterNodesAllData(const Context & context);
|
|
|
|
|
|
|
|
/// Used by ClusterCopier
|
|
|
|
size_t getShardCount() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
StorageDistributed(
|
|
|
|
const StorageID & id_,
|
|
|
|
const ColumnsDescription & columns_,
|
|
|
|
const ConstraintsDescription & constraints_,
|
|
|
|
const String & remote_database_,
|
|
|
|
const String & remote_table_,
|
|
|
|
const String & cluster_name_,
|
|
|
|
const Context & context_,
|
|
|
|
const ASTPtr & sharding_key_,
|
|
|
|
const String & storage_policy_name_,
|
|
|
|
const String & relative_data_path_,
|
|
|
|
const DistributedSettings & distributed_settings_,
|
|
|
|
bool attach_,
|
|
|
|
ClusterPtr owned_cluster_ = {});
|
|
|
|
|
|
|
|
StorageDistributed(
|
|
|
|
const StorageID & id_,
|
|
|
|
const ColumnsDescription & columns_,
|
|
|
|
const ConstraintsDescription & constraints_,
|
|
|
|
ASTPtr remote_table_function_ptr_,
|
|
|
|
const String & cluster_name_,
|
|
|
|
const Context & context_,
|
|
|
|
const ASTPtr & sharding_key_,
|
|
|
|
const String & storage_policy_name_,
|
|
|
|
const String & relative_data_path_,
|
|
|
|
const DistributedSettings & distributed_settings_,
|
|
|
|
bool attach,
|
|
|
|
ClusterPtr owned_cluster_ = {});
|
|
|
|
|
|
|
|
void renameOnDisk(const String & new_path_to_table_data);
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const ExpressionActionsPtr & getShardingKeyExpr() const { return sharding_key_expr; }
|
|
|
|
const String & getShardingKeyColumnName() const { return sharding_key_column_name; }
|
2020-07-23 14:10:48 +00:00
|
|
|
const String & getRelativeDataPath() const { return relative_data_path; }
|
2014-08-13 11:26:13 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/// create directory monitors for each existing subdirectory
|
2021-01-09 12:26:37 +00:00
|
|
|
void createDirectoryMonitors(const DiskPtr & disk);
|
2020-01-20 17:54:52 +00:00
|
|
|
/// ensure directory monitor thread and connectoin pool creation by disk and subdirectory name
|
2021-01-09 12:26:37 +00:00
|
|
|
StorageDistributedDirectoryMonitor & requireDirectoryMonitor(const DiskPtr & disk, const std::string & name);
|
2021-01-26 18:45:36 +00:00
|
|
|
|
2020-06-03 23:50:47 +00:00
|
|
|
/// Return list of metrics for all created monitors
|
|
|
|
/// (note that monitors are created lazily, i.e. until at least one INSERT executed)
|
2021-01-26 18:45:36 +00:00
|
|
|
///
|
|
|
|
/// Used by StorageSystemDistributionQueue
|
2020-06-03 23:50:47 +00:00
|
|
|
std::vector<StorageDistributedDirectoryMonitor::Status> getDirectoryMonitorsStatuses() const;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2020-05-01 08:31:05 +00:00
|
|
|
static IColumn::Selector createSelector(const ClusterPtr cluster, const ColumnWithTypeAndName & result);
|
2020-03-24 07:51:54 +00:00
|
|
|
/// Apply the following settings:
|
|
|
|
/// - optimize_skip_unused_shards
|
|
|
|
/// - force_optimize_skip_unused_shards
|
2020-06-17 16:39:58 +00:00
|
|
|
ClusterPtr getOptimizedCluster(const Context &, const StorageMetadataPtr & metadata_snapshot, const ASTPtr & query_ptr) const;
|
|
|
|
ClusterPtr skipUnusedShards(ClusterPtr cluster, const ASTPtr & query_ptr, const StorageMetadataPtr & metadata_snapshot, const Context & context) const;
|
2020-03-24 07:51:54 +00:00
|
|
|
|
2020-12-23 16:04:05 +00:00
|
|
|
size_t getRandomShardIndex(const Cluster::ShardsInfo & shards);
|
|
|
|
|
2021-01-07 14:14:41 +00:00
|
|
|
const DistributedSettings & getDistributedSettingsRef() const { return distributed_settings; }
|
|
|
|
|
2021-01-27 18:43:41 +00:00
|
|
|
void delayInsertOrThrowIfNeeded() const;
|
2021-01-26 18:45:37 +00:00
|
|
|
|
2021-01-26 18:45:36 +00:00
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
String remote_database;
|
|
|
|
String remote_table;
|
2018-07-24 13:10:34 +00:00
|
|
|
ASTPtr remote_table_function_ptr;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2020-11-06 14:07:56 +00:00
|
|
|
const Context & global_context;
|
2020-05-30 21:57:37 +00:00
|
|
|
Poco::Logger * log;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
/// Used to implement TableFunctionRemote.
|
|
|
|
std::shared_ptr<Cluster> owned_cluster;
|
|
|
|
|
|
|
|
/// Is empty if this storage implements TableFunctionRemote.
|
|
|
|
const String cluster_name;
|
|
|
|
|
|
|
|
bool has_sharding_key;
|
2020-06-16 18:49:04 +00:00
|
|
|
bool sharding_key_is_deterministic = false;
|
2017-04-01 07:20:54 +00:00
|
|
|
ExpressionActionsPtr sharding_key_expr;
|
|
|
|
String sharding_key_column_name;
|
2017-05-10 06:39:37 +00:00
|
|
|
|
|
|
|
/// Used for global monotonic ordering of files to send.
|
|
|
|
SimpleIncrement file_names_increment;
|
2017-11-03 21:50:22 +00:00
|
|
|
|
2019-04-08 05:13:16 +00:00
|
|
|
ActionBlocker monitors_blocker;
|
|
|
|
|
2020-01-20 17:54:52 +00:00
|
|
|
String relative_data_path;
|
2020-07-23 14:10:48 +00:00
|
|
|
|
2020-01-20 17:54:52 +00:00
|
|
|
/// Can be empty if relative_data_path is empty. In this case, a directory for the data to be sent is not created.
|
2020-07-23 14:10:48 +00:00
|
|
|
StoragePolicyPtr storage_policy;
|
2020-09-15 09:26:56 +00:00
|
|
|
/// The main volume to store data.
|
|
|
|
/// Storage policy may have several configured volumes, but second and other volumes are used for parts movement in MergeTree engine.
|
|
|
|
/// For Distributed engine such configuration doesn't make sense and only the first (main) volume will be used to store data.
|
|
|
|
/// Other volumes will be ignored. It's needed to allow using the same multi-volume policy both for Distributed and other engines.
|
|
|
|
VolumePtr data_volume;
|
2020-01-20 17:54:52 +00:00
|
|
|
|
2021-01-07 14:14:41 +00:00
|
|
|
DistributedSettings distributed_settings;
|
|
|
|
|
2020-01-20 17:54:52 +00:00
|
|
|
struct ClusterNodeData
|
|
|
|
{
|
2021-02-08 19:07:30 +00:00
|
|
|
std::shared_ptr<StorageDistributedDirectoryMonitor> directory_monitor;
|
2020-06-03 00:10:39 +00:00
|
|
|
ConnectionPoolPtr connection_pool;
|
2020-01-20 17:54:52 +00:00
|
|
|
};
|
|
|
|
std::unordered_map<std::string, ClusterNodeData> cluster_nodes_data;
|
2020-06-03 23:50:47 +00:00
|
|
|
mutable std::mutex cluster_nodes_mutex;
|
2020-01-20 17:54:52 +00:00
|
|
|
|
2020-12-23 16:04:05 +00:00
|
|
|
// For random shard index generation
|
|
|
|
mutable std::mutex rng_mutex;
|
|
|
|
pcg64 rng;
|
2012-05-21 20:38:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|