2021-04-12 21:42:52 +00:00
|
|
|
#include "Storages/StorageS3Cluster.h"
|
2021-03-19 21:49:18 +00:00
|
|
|
|
2021-04-10 14:58:29 +00:00
|
|
|
#if !defined(ARCADIA_BUILD)
|
2021-03-24 21:02:21 +00:00
|
|
|
#include <Common/config.h>
|
2021-04-10 14:58:29 +00:00
|
|
|
#endif
|
2021-03-24 21:02:21 +00:00
|
|
|
|
|
|
|
#if USE_AWS_S3
|
|
|
|
|
2021-03-22 17:12:31 +00:00
|
|
|
#include "Common/Exception.h"
|
2021-03-19 21:49:18 +00:00
|
|
|
#include <Common/Throttler.h>
|
|
|
|
#include "Client/Connection.h"
|
2021-03-22 23:06:10 +00:00
|
|
|
#include "Core/QueryProcessingStage.h"
|
2021-04-08 00:09:15 +00:00
|
|
|
#include <Core/UUID.h>
|
2021-03-19 21:49:18 +00:00
|
|
|
#include <Columns/ColumnsNumber.h>
|
|
|
|
#include <DataTypes/DataTypesNumber.h>
|
2021-03-22 17:12:31 +00:00
|
|
|
#include <DataTypes/DataTypeString.h>
|
|
|
|
#include <IO/ReadHelpers.h>
|
|
|
|
#include <IO/WriteBufferFromS3.h>
|
|
|
|
#include <IO/WriteHelpers.h>
|
2021-03-26 15:33:14 +00:00
|
|
|
#include <Interpreters/Context.h>
|
|
|
|
#include <Interpreters/getHeaderForProcessingStage.h>
|
|
|
|
#include <Interpreters/SelectQueryOptions.h>
|
|
|
|
#include <Interpreters/InterpreterSelectQuery.h>
|
|
|
|
#include <Interpreters/getTableExpressions.h>
|
2021-07-21 16:13:17 +00:00
|
|
|
#include <Processors/Transforms/AddingDefaultsTransform.h>
|
2021-10-15 20:18:20 +00:00
|
|
|
#include <QueryPipeline/narrowBlockInputStreams.h>
|
2021-03-19 21:49:18 +00:00
|
|
|
#include <Processors/Pipe.h>
|
2021-04-10 14:58:29 +00:00
|
|
|
#include "Processors/Sources/SourceWithProgress.h"
|
2021-04-06 19:18:45 +00:00
|
|
|
#include <Processors/Sources/RemoteSource.h>
|
2021-10-15 20:18:20 +00:00
|
|
|
#include <QueryPipeline/RemoteQueryExecutor.h>
|
2021-03-19 21:49:18 +00:00
|
|
|
#include <Parsers/queryToString.h>
|
2021-03-24 18:36:31 +00:00
|
|
|
#include <Parsers/ASTTablesInSelectQuery.h>
|
2021-03-26 15:33:14 +00:00
|
|
|
#include <Storages/IStorage.h>
|
|
|
|
#include <Storages/SelectQueryInfo.h>
|
2021-10-02 07:13:14 +00:00
|
|
|
#include <base/logger_useful.h>
|
2021-03-19 21:49:18 +00:00
|
|
|
|
2021-03-26 15:33:14 +00:00
|
|
|
#include <aws/core/auth/AWSCredentials.h>
|
|
|
|
#include <aws/s3/S3Client.h>
|
|
|
|
#include <aws/s3/model/ListObjectsV2Request.h>
|
2021-03-22 17:12:31 +00:00
|
|
|
|
2021-03-23 17:58:29 +00:00
|
|
|
#include <ios>
|
2021-03-19 21:49:18 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
#include <thread>
|
2021-03-22 17:12:31 +00:00
|
|
|
#include <cassert>
|
|
|
|
|
2021-03-19 21:49:18 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
2021-04-12 21:42:52 +00:00
|
|
|
StorageS3Cluster::StorageS3Cluster(
|
2021-04-06 19:18:45 +00:00
|
|
|
const String & filename_,
|
2021-03-22 17:12:31 +00:00
|
|
|
const String & access_key_id_,
|
|
|
|
const String & secret_access_key_,
|
|
|
|
const StorageID & table_id_,
|
|
|
|
String cluster_name_,
|
|
|
|
const String & format_name_,
|
|
|
|
UInt64 max_connections_,
|
|
|
|
const ColumnsDescription & columns_,
|
|
|
|
const ConstraintsDescription & constraints_,
|
2021-04-12 19:35:26 +00:00
|
|
|
ContextPtr context_,
|
2021-03-22 17:12:31 +00:00
|
|
|
const String & compression_method_)
|
2021-03-19 21:49:18 +00:00
|
|
|
: IStorage(table_id_)
|
2021-04-12 17:07:01 +00:00
|
|
|
, client_auth{S3::URI{Poco::URI{filename_}}, access_key_id_, secret_access_key_, max_connections_, {}, {}}
|
2021-04-06 19:18:45 +00:00
|
|
|
, filename(filename_)
|
2021-03-19 21:49:18 +00:00
|
|
|
, cluster_name(cluster_name_)
|
2021-03-22 17:12:31 +00:00
|
|
|
, format_name(format_name_)
|
|
|
|
, compression_method(compression_method_)
|
2021-03-19 21:49:18 +00:00
|
|
|
{
|
|
|
|
StorageInMemoryMetadata storage_metadata;
|
2021-03-22 17:12:31 +00:00
|
|
|
storage_metadata.setColumns(columns_);
|
|
|
|
storage_metadata.setConstraints(constraints_);
|
2021-03-19 21:49:18 +00:00
|
|
|
setInMemoryMetadata(storage_metadata);
|
2021-04-08 00:09:15 +00:00
|
|
|
StorageS3::updateClientAndAuthSettings(context_, client_auth);
|
2021-03-19 21:49:18 +00:00
|
|
|
}
|
|
|
|
|
2021-04-13 20:17:25 +00:00
|
|
|
/// The code executes on initiator
|
2021-04-12 21:42:52 +00:00
|
|
|
Pipe StorageS3Cluster::read(
|
2021-03-19 21:49:18 +00:00
|
|
|
const Names & column_names,
|
|
|
|
const StorageMetadataPtr & metadata_snapshot,
|
|
|
|
SelectQueryInfo & query_info,
|
2021-04-12 19:35:26 +00:00
|
|
|
ContextPtr context,
|
2021-03-23 17:58:29 +00:00
|
|
|
QueryProcessingStage::Enum processed_stage,
|
2021-04-13 20:17:25 +00:00
|
|
|
size_t /*max_block_size*/,
|
|
|
|
unsigned /*num_streams*/)
|
2021-03-19 21:49:18 +00:00
|
|
|
{
|
2021-04-08 00:09:15 +00:00
|
|
|
StorageS3::updateClientAndAuthSettings(context, client_auth);
|
|
|
|
|
2021-04-13 17:55:01 +00:00
|
|
|
auto cluster = context->getCluster(cluster_name)->getClusterWithReplicasAsShards(context->getSettings());
|
2021-04-08 14:22:19 +00:00
|
|
|
StorageS3::updateClientAndAuthSettings(context, client_auth);
|
|
|
|
|
2021-04-10 02:21:18 +00:00
|
|
|
auto iterator = std::make_shared<StorageS3Source::DisclosedGlobIterator>(*client_auth.client, client_auth.uri);
|
2021-04-13 10:59:02 +00:00
|
|
|
auto callback = std::make_shared<StorageS3Source::IteratorWrapper>([iterator]() mutable -> String
|
2021-04-08 14:22:19 +00:00
|
|
|
{
|
2021-04-10 02:21:18 +00:00
|
|
|
return iterator->next();
|
|
|
|
});
|
2021-03-19 21:49:18 +00:00
|
|
|
|
2021-03-26 15:33:14 +00:00
|
|
|
/// Calculate the header. This is significant, because some columns could be thrown away in some cases like query with count(*)
|
2021-03-23 17:58:29 +00:00
|
|
|
Block header =
|
2021-04-06 11:51:16 +00:00
|
|
|
InterpreterSelectQuery(query_info.query, context, SelectQueryOptions(processed_stage).analyze()).getSampleBlock();
|
2021-03-23 17:58:29 +00:00
|
|
|
|
2021-04-12 19:35:26 +00:00
|
|
|
const Scalars & scalars = context->hasQueryContext() ? context->getQueryContext()->getScalars() : Scalars{};
|
2021-03-19 21:49:18 +00:00
|
|
|
|
2021-03-24 18:36:31 +00:00
|
|
|
Pipes pipes;
|
|
|
|
|
2021-04-13 10:59:02 +00:00
|
|
|
const bool add_agg_info = processed_stage == QueryProcessingStage::WithMergeableState;
|
|
|
|
|
2021-04-12 17:07:01 +00:00
|
|
|
for (const auto & replicas : cluster->getShardsAddresses())
|
|
|
|
{
|
2021-03-19 21:49:18 +00:00
|
|
|
/// There will be only one replica, because we consider each replica as a shard
|
|
|
|
for (const auto & node : replicas)
|
|
|
|
{
|
2021-07-23 07:40:03 +00:00
|
|
|
auto connection = std::make_shared<Connection>(
|
2021-04-12 19:35:26 +00:00
|
|
|
node.host_name, node.port, context->getGlobalContext()->getCurrentDatabase(),
|
2021-04-06 19:18:45 +00:00
|
|
|
node.user, node.password, node.cluster, node.cluster_secret,
|
2021-04-12 21:42:52 +00:00
|
|
|
"S3ClusterInititiator",
|
2021-04-07 14:43:34 +00:00
|
|
|
node.compression,
|
|
|
|
node.secure
|
2021-07-23 07:40:03 +00:00
|
|
|
);
|
|
|
|
|
2021-04-06 19:18:45 +00:00
|
|
|
|
2021-04-08 14:22:19 +00:00
|
|
|
/// For unknown reason global context is passed to IStorage::read() method
|
|
|
|
/// So, task_identifier is passed as constructor argument. It is more obvious.
|
2021-04-06 19:18:45 +00:00
|
|
|
auto remote_query_executor = std::make_shared<RemoteQueryExecutor>(
|
2021-07-23 07:40:03 +00:00
|
|
|
connection,
|
2021-07-14 13:17:30 +00:00
|
|
|
queryToString(query_info.query),
|
|
|
|
header,
|
|
|
|
context,
|
|
|
|
/*throttler=*/nullptr,
|
|
|
|
scalars,
|
|
|
|
Tables(),
|
|
|
|
processed_stage,
|
|
|
|
callback);
|
2021-04-06 19:18:45 +00:00
|
|
|
|
2021-04-13 10:59:02 +00:00
|
|
|
pipes.emplace_back(std::make_shared<RemoteSource>(remote_query_executor, add_agg_info, false));
|
2021-03-19 21:49:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
metadata_snapshot->check(column_names, getVirtuals(), getStorageID());
|
|
|
|
return Pipe::unitePipes(std::move(pipes));
|
|
|
|
}
|
2021-04-07 14:43:34 +00:00
|
|
|
|
2021-04-12 21:42:52 +00:00
|
|
|
QueryProcessingStage::Enum StorageS3Cluster::getQueryProcessingStage(
|
2021-04-22 13:32:17 +00:00
|
|
|
ContextPtr context, QueryProcessingStage::Enum to_stage, const StorageMetadataPtr &, SelectQueryInfo &) const
|
2021-04-07 14:43:34 +00:00
|
|
|
{
|
|
|
|
/// Initiator executes query on remote node.
|
2021-04-12 19:35:26 +00:00
|
|
|
if (context->getClientInfo().query_kind == ClientInfo::QueryKind::INITIAL_QUERY)
|
2021-04-12 17:48:16 +00:00
|
|
|
if (to_stage >= QueryProcessingStage::Enum::WithMergeableState)
|
|
|
|
return QueryProcessingStage::Enum::WithMergeableState;
|
2021-04-12 17:07:01 +00:00
|
|
|
|
2021-04-07 14:43:34 +00:00
|
|
|
/// Follower just reads the data.
|
|
|
|
return QueryProcessingStage::Enum::FetchColumns;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-04-12 21:42:52 +00:00
|
|
|
NamesAndTypesList StorageS3Cluster::getVirtuals() const
|
2021-04-12 17:33:55 +00:00
|
|
|
{
|
|
|
|
return NamesAndTypesList{
|
|
|
|
{"_path", std::make_shared<DataTypeString>()},
|
|
|
|
{"_file", std::make_shared<DataTypeString>()}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-03-19 21:49:18 +00:00
|
|
|
}
|
|
|
|
|
2021-03-24 21:02:21 +00:00
|
|
|
#endif
|