2021-03-27 14:35:44 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "config_core.h"
|
|
|
|
|
|
|
|
#include <Storages/IStorage.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2021-09-15 22:45:43 +00:00
|
|
|
struct ExternalDataSourceConfiguration;
|
|
|
|
|
2021-03-27 17:12:47 +00:00
|
|
|
/// Storages MySQL and PostgreSQL use ConnectionPoolWithFailover and support multiple replicas.
|
2021-03-27 20:49:26 +00:00
|
|
|
/// This class unites multiple storages with replicas into multiple shards with replicas.
|
|
|
|
/// A query to external database is passed to one replica on each shard, the result is united.
|
2021-03-27 21:11:10 +00:00
|
|
|
/// Replicas on each shard have the same priority, traversed replicas are moved to the end of the queue.
|
2021-09-15 22:45:43 +00:00
|
|
|
/// Similar approach is used for URL storage.
|
2022-05-03 06:43:28 +00:00
|
|
|
class StorageExternalDistributed final : public DB::IStorage
|
2021-03-27 14:35:44 +00:00
|
|
|
{
|
|
|
|
public:
|
2021-03-28 10:27:37 +00:00
|
|
|
enum class ExternalStorageEngine
|
|
|
|
{
|
|
|
|
MySQL,
|
|
|
|
PostgreSQL,
|
2021-04-21 12:32:57 +00:00
|
|
|
URL
|
2021-03-28 10:27:37 +00:00
|
|
|
};
|
|
|
|
|
2021-03-27 17:12:47 +00:00
|
|
|
StorageExternalDistributed(
|
2021-03-27 14:35:44 +00:00
|
|
|
const StorageID & table_id_,
|
2021-03-28 10:27:37 +00:00
|
|
|
ExternalStorageEngine table_engine,
|
2021-03-27 14:35:44 +00:00
|
|
|
const String & cluster_description,
|
2021-09-15 22:45:43 +00:00
|
|
|
const ExternalDataSourceConfiguration & configuration,
|
2021-03-27 14:35:44 +00:00
|
|
|
const ColumnsDescription & columns_,
|
|
|
|
const ConstraintsDescription & constraints_,
|
2021-04-23 12:18:23 +00:00
|
|
|
const String & comment,
|
2021-04-10 23:33:54 +00:00
|
|
|
ContextPtr context_);
|
2021-03-27 14:35:44 +00:00
|
|
|
|
2021-04-21 12:32:57 +00:00
|
|
|
StorageExternalDistributed(
|
2021-04-21 19:53:38 +00:00
|
|
|
const String & addresses_description,
|
2021-04-21 12:32:57 +00:00
|
|
|
const StorageID & table_id,
|
|
|
|
const String & format_name,
|
|
|
|
const std::optional<FormatSettings> & format_settings,
|
|
|
|
const String & compression_method,
|
|
|
|
const ColumnsDescription & columns,
|
|
|
|
const ConstraintsDescription & constraints,
|
|
|
|
ContextPtr context);
|
|
|
|
|
2022-04-19 20:47:29 +00:00
|
|
|
std::string getName() const override { return "ExternalDistributed"; }
|
|
|
|
|
|
|
|
Pipe read(
|
|
|
|
const Names & column_names,
|
|
|
|
const StorageSnapshotPtr & storage_snapshot,
|
|
|
|
SelectQueryInfo & query_info,
|
|
|
|
ContextPtr context,
|
|
|
|
QueryProcessingStage::Enum processed_stage,
|
|
|
|
size_t max_block_size,
|
|
|
|
unsigned num_streams) override;
|
|
|
|
|
2021-03-27 14:35:44 +00:00
|
|
|
private:
|
2021-03-27 17:12:47 +00:00
|
|
|
using Shards = std::unordered_set<StoragePtr>;
|
2021-03-27 14:35:44 +00:00
|
|
|
Shards shards;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|