ClickHouse/dbms/src/Storages/StorageLog.h

130 lines
4.0 KiB
C++
Raw Normal View History

2011-10-31 17:55:06 +00:00
#pragma once
2010-03-18 19:32:14 +00:00
2015-01-25 05:07:51 +00:00
#include <map>
#include <shared_mutex>
2017-06-06 17:18:32 +00:00
#include <ext/shared_ptr_helper.h>
2010-03-18 19:32:14 +00:00
#include <Poco/File.h>
#include <Storages/IStorage.h>
#include <Common/FileChecker.h>
#include <Common/escapeForFileName.h>
2010-03-18 19:32:14 +00:00
namespace DB
{
/** Offsets to some row number in a file for column in table.
2017-04-16 15:00:33 +00:00
* They are needed so that you can read the data in several threads.
2012-01-10 22:11:51 +00:00
*/
struct Mark
{
size_t rows; /// How many rows are before this offset.
size_t offset; /// The offset in compressed file.
2012-01-10 22:11:51 +00:00
};
2014-01-17 15:19:20 +00:00
using Marks = std::vector<Mark>;
2012-01-10 22:11:51 +00:00
/** Implements simple table engine without support of indices.
2017-04-16 15:00:33 +00:00
* The data is stored in a compressed form.
2010-03-18 19:32:14 +00:00
*/
class StorageLog : public ext::shared_ptr_helper<StorageLog>, public IStorage
2010-03-18 19:32:14 +00:00
{
friend class ext::shared_ptr_helper<StorageLog>;
2010-03-18 19:32:14 +00:00
friend class LogBlockInputStream;
friend class LogBlockOutputStream;
public:
std::string getName() const override { return "Log"; }
std::string getTableName() const override { return name; }
const NamesAndTypesList & getColumnsListImpl() const override { return *columns; }
BlockInputStreams read(
const Names & column_names,
const SelectQueryInfo & query_info,
const Context & context,
QueryProcessingStage::Enum & processed_stage,
2017-06-02 15:54:39 +00:00
size_t max_block_size,
unsigned num_streams) override;
2017-05-21 22:25:25 +00:00
BlockOutputStreamPtr write(const ASTPtr & query, const Settings & settings) override;
void rename(const String & new_path_to_db, const String & new_database_name, const String & new_table_name) override;
2017-04-16 15:00:33 +00:00
/// Column data
struct ColumnData
{
2017-04-16 15:00:33 +00:00
/// Specifies the column number in the marks file.
/// Does not necessarily match the column number among the columns of the table: columns with lengths of arrays are also numbered here.
size_t column_index;
Poco::File data_file;
Marks marks;
};
using Files_t = std::map<String, ColumnData>;
bool checkData() const override;
protected:
String path;
String name;
NamesAndTypesListPtr columns;
mutable std::shared_mutex rwlock;
/** Attach the table with the appropriate name, along the appropriate path (with / at the end),
* (the correctness of names and paths is not verified)
* consisting of the specified columns; Create files if they do not exist.
*/
StorageLog(
const std::string & path_,
const std::string & name_,
NamesAndTypesListPtr columns_,
const NamesAndTypesList & materialized_columns_,
const NamesAndTypesList & alias_columns_,
const ColumnDefaults & column_defaults_,
size_t max_compress_block_size_);
2017-04-16 15:00:33 +00:00
/// Read marks files if they are not already read.
/// It is done lazily, so that with a large number of tables, the server starts quickly.
/// You can not call with a write locked `rwlock`.
void loadMarks();
2017-04-16 15:00:33 +00:00
/// Can be called with any state of `rwlock`.
size_t marksCount();
private:
Files_t files; /// name -> data
Names column_names; /// column_index -> name
Poco::File marks_file;
2017-04-16 15:00:33 +00:00
/// The order of adding files should not change: it corresponds to the order of the columns in the marks file.
void addFiles(const String & column_name, const IDataType & type);
2012-08-29 20:07:24 +00:00
bool loaded_marks;
size_t max_compress_block_size;
size_t file_count = 0;
2014-03-28 14:36:24 +00:00
protected:
FileChecker file_checker;
private:
2017-04-16 15:00:33 +00:00
/** For normal columns, the number of rows in the block is specified in the marks.
* For array columns and nested structures, there are more than one group of marks that correspond to different files
* - for insides (file name.bin) - the total number of array elements in the block is specified,
* - for array sizes (file name.size0.bin) - the number of rows (the whole arrays themselves) in the block is specified.
*
2017-04-16 15:00:33 +00:00
* Return the first group of marks that contain the number of rows, but not the internals of the arrays.
*/
const Marks & getMarksWithRealRowCount() const;
std::string getFullPath() const { return path + escapeForFileName(name) + '/'; }
2010-03-18 19:32:14 +00:00
};
}