2016-10-18 14:18:37 +00:00
|
|
|
#pragma once
|
|
|
|
|
2022-06-21 13:02:48 +00:00
|
|
|
#include <Storages/Cache/SchemaCache.h>
|
2023-08-21 12:30:52 +00:00
|
|
|
#include <Storages/IStorage.h>
|
2023-11-16 10:25:28 +00:00
|
|
|
#include <Storages/prepareReadingFromFormat.h>
|
2023-05-07 12:18:52 +00:00
|
|
|
#include <Common/FileRenamer.h>
|
2023-08-23 08:10:30 +00:00
|
|
|
#include <IO/Archives/IArchiveReader.h>
|
2023-11-16 10:25:28 +00:00
|
|
|
#include <Processors/SourceWithKeyCondition.h>
|
2016-10-18 14:18:37 +00:00
|
|
|
|
2017-04-08 01:32:05 +00:00
|
|
|
#include <atomic>
|
2017-07-28 17:34:02 +00:00
|
|
|
#include <shared_mutex>
|
2023-11-16 10:25:28 +00:00
|
|
|
#include <sys/stat.h>
|
2017-04-08 01:32:05 +00:00
|
|
|
|
2016-10-18 14:18:37 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2023-11-16 10:25:28 +00:00
|
|
|
class IOutputFormat;
|
|
|
|
using OutputFormatPtr = std::shared_ptr<IOutputFormat>;
|
|
|
|
|
|
|
|
class IInputFormat;
|
|
|
|
using InputFormatPtr = std::shared_ptr<IInputFormat>;
|
|
|
|
|
|
|
|
class PullingPipelineExecutor;
|
|
|
|
|
2022-04-19 20:47:29 +00:00
|
|
|
class StorageFile final : public IStorage
|
2016-10-18 14:18:37 +00:00
|
|
|
{
|
|
|
|
public:
|
2022-04-19 20:47:29 +00:00
|
|
|
struct CommonArguments : public WithContext
|
|
|
|
{
|
|
|
|
StorageID table_id;
|
|
|
|
std::string format_name;
|
|
|
|
std::optional<FormatSettings> format_settings;
|
|
|
|
std::string compression_method;
|
|
|
|
const ColumnsDescription & columns;
|
|
|
|
const ConstraintsDescription & constraints;
|
|
|
|
const String & comment;
|
2023-05-07 12:18:52 +00:00
|
|
|
const std::string rename_after_processing;
|
2023-07-31 12:04:27 +00:00
|
|
|
std::string path_to_archive;
|
2022-04-19 20:47:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// From file descriptor
|
|
|
|
StorageFile(int table_fd_, CommonArguments args);
|
|
|
|
|
|
|
|
/// From user's file
|
|
|
|
StorageFile(const std::string & table_path_, const std::string & user_files_path, CommonArguments args);
|
|
|
|
|
2023-11-16 10:25:28 +00:00
|
|
|
StorageFile(const std::string & table_path_, const std::string & user_files_path, bool distributed_processing_, CommonArguments args);
|
|
|
|
|
2022-04-19 20:47:29 +00:00
|
|
|
/// From table in database
|
|
|
|
StorageFile(const std::string & relative_table_dir_path, CommonArguments args);
|
|
|
|
|
|
|
|
explicit StorageFile(CommonArguments args);
|
|
|
|
|
2019-07-09 15:40:21 +00:00
|
|
|
std::string getName() const override { return "File"; }
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2023-12-29 15:58:01 +00:00
|
|
|
void read(
|
|
|
|
QueryPlan & query_plan,
|
2017-04-01 07:20:54 +00:00
|
|
|
const Names & column_names,
|
2021-07-09 03:15:41 +00:00
|
|
|
const StorageSnapshotPtr & storage_snapshot,
|
2020-09-20 17:52:17 +00:00
|
|
|
SelectQueryInfo & query_info,
|
2021-04-10 23:33:54 +00:00
|
|
|
ContextPtr 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,
|
2022-10-07 10:46:45 +00:00
|
|
|
size_t num_streams) override;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2021-07-23 14:25:35 +00:00
|
|
|
SinkToStoragePtr write(
|
2017-05-21 22:25:25 +00:00
|
|
|
const ASTPtr & query,
|
2020-06-15 19:08:58 +00:00
|
|
|
const StorageMetadataPtr & /*metadata_snapshot*/,
|
2023-06-07 18:33:08 +00:00
|
|
|
ContextPtr context,
|
|
|
|
bool async_insert) override;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2020-06-18 10:29:13 +00:00
|
|
|
void truncate(
|
|
|
|
const ASTPtr & /*query*/,
|
|
|
|
const StorageMetadataPtr & /* metadata_snapshot */,
|
2021-04-10 23:33:54 +00:00
|
|
|
ContextPtr /* context */,
|
2020-06-18 16:10:47 +00:00
|
|
|
TableExclusiveLockHolder &) override;
|
2020-01-05 02:57:09 +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;
|
2019-11-11 14:28:28 +00:00
|
|
|
|
2020-11-01 17:38:43 +00:00
|
|
|
bool storesDataOnDisk() const override;
|
2019-09-06 08:53:32 +00:00
|
|
|
Strings getDataPaths() const override;
|
2018-02-21 19:26:59 +00:00
|
|
|
|
2023-08-17 16:54:43 +00:00
|
|
|
NamesAndTypesList getVirtuals() const override { return virtual_columns; }
|
2020-04-27 13:55:30 +00:00
|
|
|
|
2023-11-28 18:15:07 +00:00
|
|
|
static Names getVirtualColumnNames();
|
|
|
|
|
2024-01-22 22:55:50 +00:00
|
|
|
static Strings getPathsList(const String & table_path, const String & user_files_path, const ContextPtr & context, size_t & total_bytes_to_read);
|
2020-10-14 12:19:29 +00:00
|
|
|
|
2022-05-20 14:57:27 +00:00
|
|
|
/// Check if the format supports reading only some subset of columns.
|
2022-05-13 13:51:28 +00:00
|
|
|
/// Is is useful because such formats could effectively skip unknown columns
|
2021-03-31 14:21:19 +00:00
|
|
|
/// So we can create a header of only required columns in read method and ask
|
|
|
|
/// format to read only them. Note: this hack cannot be done with ordinary formats like TSV.
|
2023-09-11 14:55:37 +00:00
|
|
|
bool supportsSubsetOfColumns(const ContextPtr & context) const;
|
2021-03-01 14:11:25 +00:00
|
|
|
|
2023-07-04 16:50:31 +00:00
|
|
|
bool supportsSubcolumns() const override { return true; }
|
|
|
|
|
2023-04-29 02:29:51 +00:00
|
|
|
bool prefersLargeBlocks() const override;
|
|
|
|
|
2023-05-05 04:18:46 +00:00
|
|
|
bool parallelizeOutputAfterReading(ContextPtr context) const override;
|
|
|
|
|
2021-10-25 16:23:44 +00:00
|
|
|
bool supportsPartitionBy() const override { return true; }
|
|
|
|
|
2023-08-23 08:10:30 +00:00
|
|
|
struct ArchiveInfo
|
|
|
|
{
|
2023-08-28 13:10:13 +00:00
|
|
|
std::vector<std::string> paths_to_archives;
|
2023-08-23 08:10:30 +00:00
|
|
|
std::string path_in_archive; // used when reading a single file from archive
|
2023-08-28 13:10:13 +00:00
|
|
|
IArchiveReader::NameFilter filter = {}; // used when files inside archive are defined with a glob
|
2023-08-28 08:34:42 +00:00
|
|
|
|
2023-08-30 08:40:55 +00:00
|
|
|
bool isSingleFileRead() const
|
2023-08-28 08:34:42 +00:00
|
|
|
{
|
2023-08-28 13:10:13 +00:00
|
|
|
return !filter;
|
2023-08-28 08:34:42 +00:00
|
|
|
}
|
2023-08-23 08:10:30 +00:00
|
|
|
};
|
|
|
|
|
2022-01-24 18:41:44 +00:00
|
|
|
static ColumnsDescription getTableStructureFromFile(
|
2021-12-15 11:30:57 +00:00
|
|
|
const String & format,
|
|
|
|
const std::vector<String> & paths,
|
|
|
|
const String & compression_method,
|
|
|
|
const std::optional<FormatSettings> & format_settings,
|
2024-01-22 22:55:50 +00:00
|
|
|
const ContextPtr & context,
|
|
|
|
const std::optional<ArchiveInfo> & archive_info = std::nullopt);
|
|
|
|
|
|
|
|
static std::pair<ColumnsDescription, String> getTableStructureAndFormatFromFile(
|
|
|
|
const std::vector<String> & paths,
|
|
|
|
const String & compression_method,
|
|
|
|
const std::optional<FormatSettings> & format_settings,
|
|
|
|
const ContextPtr & context,
|
2023-08-23 08:10:30 +00:00
|
|
|
const std::optional<ArchiveInfo> & archive_info = std::nullopt);
|
2021-12-15 11:30:57 +00:00
|
|
|
|
2022-08-05 16:20:15 +00:00
|
|
|
static SchemaCache & getSchemaCache(const ContextPtr & context);
|
|
|
|
|
2023-07-31 12:04:27 +00:00
|
|
|
static void parseFileSource(String source, String & filename, String & path_to_archive);
|
|
|
|
|
2023-08-23 08:10:30 +00:00
|
|
|
static ArchiveInfo getArchiveInfo(
|
|
|
|
const std::string & path_to_archive,
|
|
|
|
const std::string & file_in_archive,
|
|
|
|
const std::string & user_files_path,
|
2024-01-22 22:55:50 +00:00
|
|
|
const ContextPtr & context,
|
2023-08-23 08:10:30 +00:00
|
|
|
size_t & total_bytes_to_read);
|
|
|
|
|
2023-08-21 12:30:52 +00:00
|
|
|
bool supportsTrivialCountOptimization() const override { return true; }
|
|
|
|
|
2016-10-28 17:38:32 +00:00
|
|
|
protected:
|
2020-01-31 13:12:11 +00:00
|
|
|
friend class StorageFileSource;
|
2021-07-23 14:25:35 +00:00
|
|
|
friend class StorageFileSink;
|
2023-12-29 15:58:01 +00:00
|
|
|
friend class ReadFromFile;
|
2016-10-18 14:18:37 +00:00
|
|
|
|
|
|
|
private:
|
2024-01-22 22:55:50 +00:00
|
|
|
std::pair<ColumnsDescription, String> getTableStructureAndFormatFromFileDescriptor(std::optional<String> format, const ContextPtr & context);
|
|
|
|
|
|
|
|
static std::pair<ColumnsDescription, String> getTableStructureAndFormatFromFileImpl(
|
|
|
|
std::optional<String> format,
|
|
|
|
const std::vector<String> & paths,
|
|
|
|
const String & compression_method,
|
|
|
|
const std::optional<FormatSettings> & format_settings,
|
|
|
|
const ContextPtr & context,
|
|
|
|
const std::optional<ArchiveInfo> & archive_info = std::nullopt);
|
|
|
|
|
2021-12-15 11:30:57 +00:00
|
|
|
void setStorageMetadata(CommonArguments args);
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
std::string format_name;
|
2020-11-05 11:28:20 +00:00
|
|
|
// We use format settings from global context + CREATE query for File table
|
|
|
|
// function -- in this case, format_settings is set.
|
|
|
|
// For `file` table function, we use format settings from current user context,
|
|
|
|
// in this case, format_settings is not set.
|
|
|
|
std::optional<FormatSettings> format_settings;
|
2016-10-28 17:38:32 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
int table_fd = -1;
|
2019-11-19 12:46:07 +00:00
|
|
|
String compression_method;
|
2016-10-18 14:18:37 +00:00
|
|
|
|
2019-12-24 13:29:53 +00:00
|
|
|
std::string base_path;
|
2019-09-06 18:29:41 +00:00
|
|
|
std::vector<std::string> paths;
|
2023-08-23 08:10:30 +00:00
|
|
|
|
|
|
|
std::optional<ArchiveInfo> archive_info;
|
2019-07-21 13:15:04 +00:00
|
|
|
|
2021-07-24 16:50:03 +00:00
|
|
|
bool is_db_table = true; /// Table is stored in real database, not user's file
|
|
|
|
bool use_table_fd = false; /// Use table_fd instead of path
|
2016-10-25 13:49:07 +00:00
|
|
|
|
2020-09-24 23:29:16 +00:00
|
|
|
mutable std::shared_timed_mutex rwlock;
|
2016-10-18 14:18:37 +00:00
|
|
|
|
2024-01-23 17:04:50 +00:00
|
|
|
LoggerPtr log = getLogger("StorageFile");
|
2021-04-26 13:34:44 +00:00
|
|
|
|
2021-04-28 16:25:14 +00:00
|
|
|
/// Total number of bytes to read (sums for multiple files in case of globs). Needed for progress bar.
|
2021-04-26 13:34:44 +00:00
|
|
|
size_t total_bytes_to_read = 0;
|
2021-10-28 13:56:45 +00:00
|
|
|
|
|
|
|
String path_for_partitioned_write;
|
2022-01-24 18:41:44 +00:00
|
|
|
|
2021-12-29 18:03:15 +00:00
|
|
|
bool is_path_with_globs = false;
|
2022-01-25 07:56:52 +00:00
|
|
|
|
2022-01-24 18:41:44 +00:00
|
|
|
/// These buffers are needed for schema inference when data source
|
|
|
|
/// is file descriptor. See getTableStructureFromFileDescriptor.
|
|
|
|
std::unique_ptr<ReadBuffer> read_buffer_from_fd;
|
|
|
|
std::unique_ptr<ReadBuffer> peekable_read_buffer_from_fd;
|
2022-01-31 08:58:40 +00:00
|
|
|
std::atomic<bool> has_peekable_read_buffer_from_fd = false;
|
2023-05-07 12:18:52 +00:00
|
|
|
|
|
|
|
// Counts the number of readers
|
|
|
|
std::atomic<int32_t> readers_counter = 0;
|
|
|
|
FileRenamer file_renamer;
|
|
|
|
bool was_renamed = false;
|
2023-08-17 16:54:43 +00:00
|
|
|
|
|
|
|
NamesAndTypesList virtual_columns;
|
2023-11-16 10:25:28 +00:00
|
|
|
bool distributed_processing = false;
|
|
|
|
};
|
|
|
|
|
2024-01-22 22:55:50 +00:00
|
|
|
class StorageFileSource : public SourceWithKeyCondition, WithContext
|
2023-11-16 10:25:28 +00:00
|
|
|
{
|
|
|
|
public:
|
2024-01-22 22:55:50 +00:00
|
|
|
class FilesIterator : WithContext
|
2023-11-16 10:25:28 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit FilesIterator(
|
|
|
|
const Strings & files_,
|
|
|
|
std::optional<StorageFile::ArchiveInfo> archive_info_,
|
2023-12-29 15:58:01 +00:00
|
|
|
const ActionsDAG::Node * predicate,
|
2023-11-16 10:25:28 +00:00
|
|
|
const NamesAndTypesList & virtual_columns,
|
2024-01-22 22:55:50 +00:00
|
|
|
const ContextPtr & context_,
|
2023-11-16 10:25:28 +00:00
|
|
|
bool distributed_processing_ = false);
|
|
|
|
|
|
|
|
String next();
|
|
|
|
|
|
|
|
bool isReadFromArchive() const
|
|
|
|
{
|
|
|
|
return archive_info.has_value();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool validFileInArchive(const std::string & path) const
|
|
|
|
{
|
|
|
|
return archive_info->filter(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isSingleFileReadFromArchive() const
|
|
|
|
{
|
|
|
|
return archive_info->isSingleFileRead();
|
|
|
|
}
|
|
|
|
|
|
|
|
const String & getFileNameInArchive();
|
|
|
|
private:
|
|
|
|
std::vector<std::string> files;
|
|
|
|
|
|
|
|
std::optional<StorageFile::ArchiveInfo> archive_info;
|
|
|
|
|
|
|
|
std::atomic<size_t> index = 0;
|
|
|
|
|
|
|
|
bool distributed_processing;
|
|
|
|
};
|
|
|
|
|
|
|
|
using FilesIteratorPtr = std::shared_ptr<FilesIterator>;
|
|
|
|
|
|
|
|
StorageFileSource(
|
|
|
|
const ReadFromFormatInfo & info,
|
|
|
|
std::shared_ptr<StorageFile> storage_,
|
2024-01-22 22:55:50 +00:00
|
|
|
const ContextPtr & context_,
|
2023-11-16 10:25:28 +00:00
|
|
|
UInt64 max_block_size_,
|
|
|
|
FilesIteratorPtr files_iterator_,
|
|
|
|
std::unique_ptr<ReadBuffer> read_buf_,
|
|
|
|
bool need_only_count_);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If specified option --rename_files_after_processing and files created by TableFunctionFile
|
|
|
|
* Last reader will rename files according to specified pattern if desctuctor of reader was called without uncaught exceptions
|
|
|
|
*/
|
|
|
|
void beforeDestroy();
|
|
|
|
|
|
|
|
~StorageFileSource() override;
|
|
|
|
|
|
|
|
String getName() const override
|
|
|
|
{
|
|
|
|
return storage->getName();
|
|
|
|
}
|
|
|
|
|
|
|
|
void setKeyCondition(const ActionsDAG::NodeRawConstPtrs & nodes, ContextPtr context_) override;
|
|
|
|
|
|
|
|
bool tryGetCountFromCache(const struct stat & file_stat);
|
|
|
|
|
|
|
|
Chunk generate() override;
|
|
|
|
|
|
|
|
void addNumRowsToCache(const String & path, size_t num_rows) const;
|
|
|
|
|
|
|
|
std::optional<size_t> tryGetNumRowsFromCache(const String & path, time_t last_mod_time) const;
|
|
|
|
|
|
|
|
std::shared_ptr<StorageFile> storage;
|
|
|
|
FilesIteratorPtr files_iterator;
|
|
|
|
String current_path;
|
2023-11-28 14:51:21 +00:00
|
|
|
std::optional<size_t> current_file_size;
|
2023-11-16 10:25:28 +00:00
|
|
|
struct stat current_archive_stat;
|
|
|
|
std::optional<String> filename_override;
|
|
|
|
Block sample_block;
|
|
|
|
std::unique_ptr<ReadBuffer> read_buf;
|
|
|
|
InputFormatPtr input_format;
|
|
|
|
std::unique_ptr<QueryPipeline> pipeline;
|
|
|
|
std::unique_ptr<PullingPipelineExecutor> reader;
|
|
|
|
|
|
|
|
std::shared_ptr<IArchiveReader> archive_reader;
|
|
|
|
std::unique_ptr<IArchiveReader::FileEnumerator> file_enumerator = nullptr;
|
|
|
|
|
|
|
|
ColumnsDescription columns_description;
|
|
|
|
NamesAndTypesList requested_columns;
|
|
|
|
NamesAndTypesList requested_virtual_columns;
|
|
|
|
Block block_for_format;
|
|
|
|
|
|
|
|
UInt64 max_block_size;
|
|
|
|
|
|
|
|
bool finished_generate = false;
|
|
|
|
bool need_only_count = false;
|
|
|
|
size_t total_rows_in_file = 0;
|
|
|
|
|
|
|
|
std::shared_lock<std::shared_timed_mutex> shared_lock;
|
2016-10-18 14:18:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|