mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 11:22:12 +00:00
151ba92a2e
Consider the following example: CREATE TABLE data (root.array_str Array(UInt8)) ENGINE = MergeTree() ORDER BY tuple(); INSERT INTO data VALUES ([]); ALTER TABLE data ADD COLUMN root.nested_array Array(Array(UInt8)); In this case the first part will not have data for root.nested_array, and thanks to #37152 it will simply read offsets column from root.array_str, however since root.nested_array is a nested array, it will try to read elements from the same offsets stream and if you are lucky enough you will get one of the following errors: - Cannot read all data. Bytes read: 1. Bytes expected: 8.: (while reading column root.nested_array): While executing MergeTreeInOrder. (CANNOT_READ_ALL_DATA) - DB::Exception: Array size is too large: 8233460228287709730: (while reading column serp.serp_features): While executing MergeTreeInOrder. So to address this, findColumnForOffsets() had been changed to return the level of the column too, to allow to read only up to this level. Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
115 lines
4.8 KiB
C++
115 lines
4.8 KiB
C++
#pragma once
|
|
|
|
#include <Core/NamesAndTypes.h>
|
|
#include <Common/HashTable/HashMap.h>
|
|
#include <Storages/MergeTree/MergeTreeReaderStream.h>
|
|
#include <Storages/MergeTree/MergeTreeBlockReadUtils.h>
|
|
#include <Storages/MergeTree/IMergeTreeDataPart.h>
|
|
#include <Storages/MergeTree/IMergeTreeDataPartInfoForReader.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class IDataType;
|
|
|
|
/// 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 IMergeTreeReader : private boost::noncopyable
|
|
{
|
|
public:
|
|
using ValueSizeMap = std::map<std::string, double>;
|
|
using DeserializeBinaryBulkStateMap = std::map<std::string, ISerialization::DeserializeBinaryBulkStatePtr>;
|
|
|
|
IMergeTreeReader(
|
|
MergeTreeDataPartInfoForReaderPtr data_part_info_for_read_,
|
|
const NamesAndTypesList & columns_,
|
|
const StorageMetadataPtr & metadata_snapshot_,
|
|
UncompressedCache * uncompressed_cache_,
|
|
MarkCache * mark_cache_,
|
|
const MarkRanges & all_mark_ranges_,
|
|
const MergeTreeReaderSettings & settings_,
|
|
const ValueSizeMap & avg_value_size_hints_ = ValueSizeMap{});
|
|
|
|
/// 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.
|
|
/// 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;
|
|
|
|
virtual bool canReadIncompleteGranules() const = 0;
|
|
|
|
virtual ~IMergeTreeReader() = default;
|
|
|
|
const ValueSizeMap & getAvgValueSizeHints() const;
|
|
|
|
/// Add columns from ordered_names that are not present in the block.
|
|
/// Missing columns are added in the order specified by ordered_names.
|
|
/// 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;
|
|
|
|
/// If part metadata is not equal to storage metadata, than
|
|
/// try to perform conversions of columns.
|
|
void performRequiredConversions(Columns & res_columns) const;
|
|
|
|
const NamesAndTypesList & getColumns() const { return requested_columns; }
|
|
size_t numColumnsInResult() const { return requested_columns.size(); }
|
|
|
|
size_t getFirstMarkToRead() const { return all_mark_ranges.front().begin; }
|
|
|
|
MergeTreeDataPartInfoForReaderPtr data_part_info_for_read;
|
|
|
|
protected:
|
|
/// Returns actual column name in part, which can differ from table metadata.
|
|
String getColumnNameInPart(const NameAndTypePair & required_column) const;
|
|
|
|
/// Returns actual column name and type in part, which can differ from table metadata.
|
|
NameAndTypePair getColumnInPart(const NameAndTypePair & required_column) const;
|
|
/// Returns actual serialization in part, which can differ from table metadata.
|
|
SerializationPtr getSerializationInPart(const NameAndTypePair & required_column) const;
|
|
|
|
void checkNumberOfColumns(size_t num_columns_to_read) const;
|
|
|
|
/// avg_value_size_hints are used to reduce the number of reallocations when creating columns of variable size.
|
|
ValueSizeMap avg_value_size_hints;
|
|
/// Stores states for IDataType::deserializeBinaryBulk
|
|
DeserializeBinaryBulkStateMap deserialize_binary_bulk_state_map;
|
|
|
|
/// Actual column names and types of columns in part,
|
|
/// which may differ from table metadata.
|
|
NamesAndTypes columns_to_read;
|
|
/// Actual serialization of columns in part.
|
|
Serializations serializations;
|
|
|
|
UncompressedCache * uncompressed_cache;
|
|
MarkCache * mark_cache;
|
|
|
|
MergeTreeReaderSettings settings;
|
|
|
|
StorageMetadataPtr metadata_snapshot;
|
|
MarkRanges all_mark_ranges;
|
|
|
|
/// 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;
|
|
|
|
NameSet partially_read_columns;
|
|
|
|
private:
|
|
/// Alter conversions, which must be applied on fly if required
|
|
AlterConversions alter_conversions;
|
|
|
|
/// Columns that are requested to read.
|
|
NamesAndTypesList requested_columns;
|
|
|
|
/// Actual columns description in part.
|
|
const ColumnsDescription & part_columns;
|
|
};
|
|
|
|
}
|