ClickHouse/src/Storages/MergeTree/IMergeTreeReader.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

117 lines
4.9 KiB
C++
Raw Normal View History

2013-11-26 11:55:11 +00:00
#pragma once
#include <Core/NamesAndTypes.h>
2021-08-15 10:32:56 +00:00
#include <Common/HashTable/HashMap.h>
Data Skipping Indices (#4143) * made index parser * added index parsing * some fixes * added index interface and factory * fixed compilation * ptrs * added indexParts * indextypes * index condition * IndexCondition * added indexes in selectexecutor * fix * changed comment * fix * added granularity * comments * fix * fix * added writing indexes * removed indexpart class * fix * added setSkipIndexes * add rw for MergeTreeIndexes * fixes * upd error * fix * fix * reading * test index * fixed nullptr error * fixed * fix * unique names * asts -> exprlist * minmax index * fix * fixed select * fixed merging * fixed mutation * working minmax * removed test index * fixed style * added indexes to checkDataPart * added tests for minmax index * fixed constructor * fix style * fixed includes * fixed setSkipIndexes * added indexes meta to zookeeper * added parsing * removed throw * alter cmds parse * fix * added alter * fix * alters fix * fix alters * fix "after" * fixed alter * alter fix + test * fixes * upd setSkipIndexes * fixed alter bug with drop all indices * fix metadata editing * new test and repl fix * rm test files * fixed repl alter * fix * fix * indices * MTReadStream * upd test for bug * fix * added useful parsers and ast classes * fix * fix comments * replaced columns * fix * fixed parsing * fixed printing * fix err * basic IndicesDescription * go to IndicesDescr * moved indices * go to indicesDescr * fix test minmax_index* * fixed MT alter * fixed bug with replMT indices storing in zk * rename * refactoring * docs ru * docs ru * docs en * refactor * rename tests * fix docs * refactoring * fix * fix * fix * fixed style * unique idx * unique * fix * better minmax calculation * upd * added getBlock * unique_condition * added termForAST * unique * fixed not * uniqueCondition::mayBeTrueOnGranule * fix * fixed bug with double column * is always true * fix * key set * spaces * test * tests * fix * unique * fix * fix * fixed bug with duplicate column * removed unused data * fix * fixes * __bitSwapLastTwo * fix
2019-02-05 14:50:25 +00:00
#include <Storages/MergeTree/MergeTreeReaderStream.h>
2019-10-10 16:30:30 +00:00
#include <Storages/MergeTree/MergeTreeBlockReadUtils.h>
2022-09-05 16:55:00 +00:00
#include <Storages/MergeTree/IMergeTreeDataPart.h>
#include <Storages/MergeTree/IMergeTreeDataPartInfoForReader.h>
2013-11-26 11:55:11 +00:00
namespace DB
{
2016-11-20 12:43:20 +00:00
class IDataType;
2017-01-24 17:25:47 +00:00
/// 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).
2019-10-10 16:30:30 +00:00
class IMergeTreeReader : private boost::noncopyable
2013-11-26 11:55:11 +00:00
{
public:
using ValueSizeMap = std::map<std::string, double>;
2021-03-09 14:46:52 +00:00
using DeserializeBinaryBulkStateMap = std::map<std::string, ISerialization::DeserializeBinaryBulkStatePtr>;
IMergeTreeReader(
2022-09-05 16:55:00 +00:00
MergeTreeDataPartInfoForReaderPtr data_part_info_for_read_,
2019-10-10 16:30:30 +00:00
const NamesAndTypesList & columns_,
const StorageMetadataPtr & metadata_snapshot_,
2019-08-03 11:02:40 +00:00
UncompressedCache * uncompressed_cache_,
MarkCache * mark_cache_,
2019-10-10 16:30:30 +00:00
const MarkRanges & all_mark_ranges_,
const MergeTreeReaderSettings & settings_,
2019-10-10 16:30:30 +00:00
const ValueSizeMap & avg_value_size_hints_ = ValueSizeMap{});
2014-07-23 15:24:45 +00:00
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.
2021-10-20 22:57:43 +00:00
/// If continue_reading is true, continue reading from last state, otherwise seek to from_mark.
/// current_task_last mark is needed for asynchronous reading (mainly from remote fs).
virtual size_t readRows(size_t from_mark, size_t current_task_last_mark,
bool continue_reading, size_t max_rows_to_read, Columns & res_columns) = 0;
2019-10-10 16:30:30 +00:00
virtual bool canReadIncompleteGranules() const = 0;
2022-07-27 14:05:16 +00:00
virtual ~IMergeTreeReader() = default;
2013-11-26 11:55:11 +00:00
2016-07-19 10:57:57 +00:00
const ValueSizeMap & getAvgValueSizeHints() const;
2015-09-16 17:49:08 +00:00
2017-01-24 17:25:47 +00:00
/// Add columns from ordered_names that are not present in the block.
/// Missing columns are added in the order specified by ordered_names.
2019-09-23 19:22:02 +00:00
/// num_rows is needed in case if all res_columns are nullptr.
void fillMissingColumns(Columns & res_columns, bool & should_evaluate_missing_defaults, size_t num_rows) const;
/// Evaluate defaulted columns if necessary.
void evaluateMissingDefaults(Block additional_columns, Columns & res_columns) const;
2014-12-04 15:50:48 +00:00
2023-05-25 22:54:54 +00:00
/// If part metadata is not equal to storage metadata,
/// then try to perform conversions of columns.
void performRequiredConversions(Columns & res_columns) const;
2020-01-15 13:00:08 +00:00
2022-07-27 14:05:16 +00:00
const NamesAndTypesList & getColumns() const { return requested_columns; }
size_t numColumnsInResult() const { return requested_columns.size(); }
2018-02-13 19:34:15 +00:00
2022-07-26 17:31:56 +00:00
size_t getFirstMarkToRead() const { return all_mark_ranges.front().begin; }
2013-11-26 11:55:11 +00:00
2022-09-05 16:55:00 +00:00
MergeTreeDataPartInfoForReaderPtr data_part_info_for_read;
2019-11-07 11:11:38 +00:00
virtual void prefetchBeginOfRange(Priority) {}
2023-02-07 17:50:31 +00:00
2019-10-10 16:30:30 +00:00
protected:
2022-07-21 14:47:19 +00:00
/// Returns actual column name in part, which can differ from table metadata.
String getColumnNameInPart(const NameAndTypePair & required_column) const;
2022-07-26 17:31:56 +00:00
2022-07-21 14:47:19 +00:00
/// Returns actual column name and type in part, which can differ from table metadata.
NameAndTypePair getColumnInPart(const NameAndTypePair & required_column) const;
2022-07-27 14:05:16 +00:00
/// Returns actual serialization in part, which can differ from table metadata.
SerializationPtr getSerializationInPart(const NameAndTypePair & required_column) const;
2020-06-03 22:00:02 +00:00
void checkNumberOfColumns(size_t num_columns_to_read) const;
2020-04-14 19:47:19 +00:00
2017-01-24 17:25:47 +00:00
/// avg_value_size_hints are used to reduce the number of reallocations when creating columns of variable size.
2015-09-16 17:49:08 +00:00
ValueSizeMap avg_value_size_hints;
/// Stores states for IDataType::deserializeBinaryBulk
DeserializeBinaryBulkStateMap deserialize_binary_bulk_state_map;
2022-07-28 13:10:43 +00:00
/// Actual column names and types of columns in part,
/// which may differ from table metadata.
2022-07-27 14:05:16 +00:00
NamesAndTypes columns_to_read;
2022-07-28 13:10:43 +00:00
/// Actual serialization of columns in part.
2022-07-27 14:05:16 +00:00
Serializations serializations;
2015-04-16 06:12:35 +00:00
UncompressedCache * uncompressed_cache;
MarkCache * mark_cache;
2019-10-10 16:30:30 +00:00
MergeTreeReaderSettings settings;
2015-04-16 06:12:35 +00:00
StorageMetadataPtr metadata_snapshot;
2015-07-08 17:59:44 +00:00
MarkRanges all_mark_ranges;
2015-04-02 03:08:43 +00:00
/// Position and level (of nesting).
using ColumnPositionLevel = std::optional<std::pair<size_t, size_t>>;
/// In case of part of the nested column does not exists, offsets should be
/// read, but only the offsets for the current column, that is why it
/// returns pair of size_t, not just one.
ColumnPositionLevel findColumnForOffsets(const NameAndTypePair & column) const;
2020-06-01 17:52:09 +00:00
NameSet partially_read_columns;
private:
2020-04-03 11:09:27 +00:00
/// Alter conversions, which must be applied on fly if required
2023-05-25 22:54:54 +00:00
AlterConversionsPtr alter_conversions;
2022-07-27 14:05:16 +00:00
/// Columns that are requested to read.
NamesAndTypesList requested_columns;
/// Actual columns description in part.
2023-01-25 22:19:05 +00:00
const ColumnsDescription & part_columns;
2013-11-26 11:55:11 +00:00
};
}