2019-05-31 07:27:14 +00:00
|
|
|
#pragma once
|
|
|
|
|
2022-09-28 08:45:15 +00:00
|
|
|
#include "config.h"
|
2019-12-06 14:37:21 +00:00
|
|
|
|
|
|
|
#if USE_AWS_S3
|
|
|
|
|
2019-11-04 19:57:03 +00:00
|
|
|
#include <TableFunctions/ITableFunction.h>
|
2023-02-06 14:36:47 +00:00
|
|
|
#include <Storages/StorageS3.h>
|
2019-05-31 07:27:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2019-09-22 22:13:42 +00:00
|
|
|
|
|
|
|
class Context;
|
|
|
|
|
2023-05-12 13:58:45 +00:00
|
|
|
/* s3(source, [access_key_id, secret_access_key,] [format, structure, compression]) - creates a temporary storage for a file in S3.
|
2019-05-31 07:27:14 +00:00
|
|
|
*/
|
2019-11-04 19:57:03 +00:00
|
|
|
class TableFunctionS3 : public ITableFunction
|
2019-05-31 07:27:14 +00:00
|
|
|
{
|
|
|
|
public:
|
2020-07-17 03:33:29 +00:00
|
|
|
static constexpr auto name = "s3";
|
2023-02-16 12:48:22 +00:00
|
|
|
static constexpr auto signature = " - url\n"
|
|
|
|
" - url, format\n"
|
|
|
|
" - url, format, structure\n"
|
|
|
|
" - url, access_key_id, secret_access_key\n"
|
|
|
|
" - url, format, structure, compression_method\n"
|
|
|
|
" - url, access_key_id, secret_access_key, format\n"
|
|
|
|
" - url, access_key_id, secret_access_key, format, structure\n"
|
2023-05-12 13:58:45 +00:00
|
|
|
" - url, access_key_id, secret_access_key, format, structure, compression_method\n"
|
|
|
|
"All signatures supports optional headers (specified as `headers('name'='value', 'name2'='value2')`)";
|
|
|
|
|
|
|
|
static size_t getMaxNumberOfArguments() { return 6; }
|
|
|
|
|
|
|
|
String getName() const override
|
2019-05-31 07:27:14 +00:00
|
|
|
{
|
|
|
|
return name;
|
|
|
|
}
|
2023-05-12 13:58:45 +00:00
|
|
|
|
|
|
|
virtual String getSignature() const
|
|
|
|
{
|
|
|
|
return signature;
|
|
|
|
}
|
|
|
|
|
2022-03-28 22:46:35 +00:00
|
|
|
bool hasStaticStructure() const override { return configuration.structure != "auto"; }
|
2019-05-31 07:27:14 +00:00
|
|
|
|
2022-03-28 22:46:35 +00:00
|
|
|
bool needStructureHint() const override { return configuration.structure == "auto"; }
|
2022-02-18 16:19:42 +00:00
|
|
|
|
|
|
|
void setStructureHint(const ColumnsDescription & structure_hint_) override { structure_hint = structure_hint_; }
|
|
|
|
|
2022-10-14 15:09:35 +00:00
|
|
|
bool supportsReadingSubsetOfColumns() override;
|
|
|
|
|
2022-11-25 19:33:47 +00:00
|
|
|
std::unordered_set<String> getVirtualsToCheckBeforeUsingStructureHint() const override
|
|
|
|
{
|
|
|
|
return {"_path", "_file"};
|
|
|
|
}
|
2023-05-04 07:56:00 +00:00
|
|
|
|
2023-05-12 13:58:45 +00:00
|
|
|
virtual void parseArgumentsImpl(ASTs & args, const ContextPtr & context);
|
|
|
|
|
|
|
|
static void addColumnsStructureToArguments(ASTs & args, const String & structure, const ContextPtr & context);
|
2023-02-13 08:29:22 +00:00
|
|
|
|
2020-07-17 03:33:29 +00:00
|
|
|
protected:
|
2022-03-28 22:46:35 +00:00
|
|
|
|
2019-11-04 19:57:03 +00:00
|
|
|
StoragePtr executeImpl(
|
|
|
|
const ASTPtr & ast_function,
|
2021-04-10 23:33:54 +00:00
|
|
|
ContextPtr context,
|
2020-09-02 15:07:53 +00:00
|
|
|
const std::string & table_name,
|
2020-10-14 12:19:29 +00:00
|
|
|
ColumnsDescription cached_columns) const override;
|
2019-11-04 19:57:03 +00:00
|
|
|
|
2020-07-17 03:33:29 +00:00
|
|
|
const char * getStorageTypeName() const override { return "S3"; }
|
2020-10-14 12:19:29 +00:00
|
|
|
|
2021-04-10 23:33:54 +00:00
|
|
|
ColumnsDescription getActualTableStructure(ContextPtr context) const override;
|
|
|
|
void parseArguments(const ASTPtr & ast_function, ContextPtr context) override;
|
2020-10-14 12:19:29 +00:00
|
|
|
|
2023-02-06 14:36:47 +00:00
|
|
|
mutable StorageS3::Configuration configuration;
|
2022-02-18 16:19:42 +00:00
|
|
|
ColumnsDescription structure_hint;
|
2020-07-17 03:33:29 +00:00
|
|
|
};
|
|
|
|
|
2019-05-31 07:27:14 +00:00
|
|
|
}
|
2019-12-06 14:37:21 +00:00
|
|
|
|
2019-12-09 12:36:06 +00:00
|
|
|
#endif
|