ClickHouse/dbms/src/Storages/MergeTree/MergeTreeReaderCompact.h

52 lines
1.8 KiB
C++
Raw Normal View History

2019-10-10 16:30:30 +00:00
#pragma once
#include <Core/NamesAndTypes.h>
#include <Storages/MergeTree/IMergeTreeReader.h>
#include <port/clock.h>
namespace DB
{
/// Reads the data between pairs of marks in the same part. When reading consecutive ranges, avoids unnecessary seeks.
/// When ranges are almost consecutive, seeks are fast because they are performed inside the buffer.
/// Avoids loading the marks file if it is not needed (e.g. when reading the whole part).
class MergeTreeReaderCompact : public IMergeTreeReader
{
public:
MergeTreeReaderCompact(const MergeTreeData::DataPartPtr & data_part_,
const NamesAndTypesList & columns_,
UncompressedCache * uncompressed_cache_,
MarkCache * mark_cache_,
const MarkRanges & mark_ranges_,
const ReaderSettings & settings_,
2019-10-11 15:37:16 +00:00
const ValueSizeMap & avg_value_size_hints_ = ValueSizeMap{});
2019-10-10 16:30:30 +00:00
/// Return the number of rows has been read or zero if there is no columns to read.
/// If continue_reading is true, continue reading from last state, otherwise seek to from_mark
size_t readRows(size_t from_mark, bool continue_reading, size_t max_rows_to_read, Block & res) override;
private:
ReadBuffer * data_buffer;
2019-10-16 18:27:53 +00:00
std::unique_ptr<CachedCompressedReadBuffer> cached_buffer;
std::unique_ptr<CompressedReadBufferFromFile> non_cached_buffer;
2019-10-10 16:30:30 +00:00
2019-11-20 13:33:41 +00:00
MergeTreeMarksLoader marks_loader;
2019-10-11 15:37:16 +00:00
2019-11-20 13:33:41 +00:00
void initMarksLoader();
2019-10-16 18:27:53 +00:00
void seekToStart();
void seekToMark(size_t row, size_t col);
const MarkInCompressedFile & getMark(size_t row, size_t col);
void readData(const String & name, const IDataType & type, IColumn & column,
size_t from_mark, size_t column_position, size_t rows_to_read);
2019-10-11 15:37:16 +00:00
static auto constexpr NAME_OF_FILE_WITH_DATA = "data";
2019-10-10 16:30:30 +00:00
/// Columns that are read.
friend class MergeTreeRangeReader::DelayedStream;
};
}