ClickHouse/dbms/src/Storages/StorageStripeLog.h

79 lines
2.1 KiB
C++
Raw Normal View History

#pragma once
#include <map>
#include <shared_mutex>
2017-06-06 17:18:32 +00:00
#include <ext/shared_ptr_helper.h>
#include <Core/Defines.h>
#include <Storages/IStorage.h>
#include <Common/FileChecker.h>
#include <Common/escapeForFileName.h>
namespace DB
{
/** Implements a table engine that is suitable for small chunks of the log.
2017-04-16 15:00:33 +00:00
* In doing so, stores all the columns in a single Native file, with a nearby index.
*/
class StorageStripeLog : public ext::shared_ptr_helper<StorageStripeLog>, public IStorage
{
friend class StripeLogSource;
friend class StripeLogBlockOutputStream;
friend struct ext::shared_ptr_helper<StorageStripeLog>;
public:
String getName() const override { return "StripeLog"; }
Pipes read(
const Names & column_names,
const SelectQueryInfo & query_info,
const Context & context,
QueryProcessingStage::Enum processed_stage,
size_t max_block_size,
2017-06-02 15:54:39 +00:00
unsigned num_streams) override;
BlockOutputStreamPtr write(const ASTPtr & query, const Context & context) override;
void rename(
const String & new_path_to_table_data,
const String & new_database_name,
const String & new_table_name,
TableStructureWriteLockHolder &) override;
2019-07-03 13:17:19 +00:00
CheckResults checkData(const ASTPtr & /* query */, const Context & /* context */) override;
Strings getDataPaths() const override { return {DB::fullPath(disk, table_path)}; }
2019-08-27 20:43:08 +00:00
void truncate(const ASTPtr &, const Context &, TableStructureWriteLockHolder &) override;
2018-04-21 00:35:20 +00:00
protected:
StorageStripeLog(
DiskPtr disk_,
const String & relative_path_,
const StorageID & table_id_,
const ColumnsDescription & columns_,
const ConstraintsDescription & constraints_,
bool attach,
size_t max_compress_block_size_);
private:
struct ColumnData
{
String data_file_path;
};
using Files = std::map<String, ColumnData>; /// file name -> column data
DiskPtr disk;
String table_path;
size_t max_compress_block_size;
FileChecker file_checker;
mutable std::shared_mutex rwlock;
Logger * log;
};
}