/root/doris/be/src/olap/tablet_schema.h
Line | Count | Source |
1 | | // Licensed to the Apache Software Foundation (ASF) under one |
2 | | // or more contributor license agreements. See the NOTICE file |
3 | | // distributed with this work for additional information |
4 | | // regarding copyright ownership. The ASF licenses this file |
5 | | // to you under the Apache License, Version 2.0 (the |
6 | | // "License"); you may not use this file except in compliance |
7 | | // with the License. You may obtain a copy of the License at |
8 | | // |
9 | | // http://www.apache.org/licenses/LICENSE-2.0 |
10 | | // |
11 | | // Unless required by applicable law or agreed to in writing, |
12 | | // software distributed under the License is distributed on an |
13 | | // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
14 | | // KIND, either express or implied. See the License for the |
15 | | // specific language governing permissions and limitations |
16 | | // under the License. |
17 | | |
18 | | #pragma once |
19 | | |
20 | | #include <gen_cpp/Types_types.h> |
21 | | #include <gen_cpp/olap_common.pb.h> |
22 | | #include <gen_cpp/olap_file.pb.h> |
23 | | #include <gen_cpp/segment_v2.pb.h> |
24 | | #include <parallel_hashmap/phmap.h> |
25 | | |
26 | | #include <algorithm> |
27 | | #include <cstdint> |
28 | | #include <map> |
29 | | #include <memory> |
30 | | #include <string> |
31 | | #include <unordered_map> |
32 | | #include <unordered_set> |
33 | | #include <utility> |
34 | | #include <vector> |
35 | | |
36 | | #include "common/consts.h" |
37 | | #include "common/status.h" |
38 | | #include "olap/inverted_index_parser.h" |
39 | | #include "olap/metadata_adder.h" |
40 | | #include "olap/olap_common.h" |
41 | | #include "olap/rowset/segment_v2/options.h" |
42 | | #include "runtime/define_primitive_type.h" |
43 | | #include "runtime/descriptors.h" |
44 | | #include "runtime/memory/lru_cache_policy.h" |
45 | | #include "udf/udf.h" |
46 | | #include "util/debug_points.h" |
47 | | #include "util/string_parser.hpp" |
48 | | #include "util/string_util.h" |
49 | | #include "vec/aggregate_functions/aggregate_function.h" |
50 | | #include "vec/common/string_ref.h" |
51 | | #include "vec/common/string_utils/string_utils.h" |
52 | | #include "vec/core/types.h" |
53 | | #include "vec/json/path_in_data.h" |
54 | | |
55 | | namespace doris { |
56 | | namespace vectorized { |
57 | | class Block; |
58 | | class PathInData; |
59 | | class IDataType; |
60 | | } // namespace vectorized |
61 | | |
62 | | #include "common/compile_check_begin.h" |
63 | | |
64 | | struct OlapTableIndexSchema; |
65 | | class TColumn; |
66 | | class TOlapTableIndex; |
67 | | class TabletColumn; |
68 | | |
69 | | using TabletColumnPtr = std::shared_ptr<TabletColumn>; |
70 | | |
71 | | class TabletColumn : public MetadataAdder<TabletColumn> { |
72 | | public: |
73 | | TabletColumn(); |
74 | | TabletColumn(const ColumnPB& column); |
75 | | TabletColumn(const TColumn& column); |
76 | | TabletColumn(FieldAggregationMethod agg, FieldType type); |
77 | | TabletColumn(FieldAggregationMethod agg, FieldType filed_type, bool is_nullable); |
78 | | TabletColumn(FieldAggregationMethod agg, FieldType filed_type, bool is_nullable, |
79 | | int32_t unique_id, size_t length); |
80 | | |
81 | | #ifdef BE_TEST |
82 | 71.4k | virtual ~TabletColumn() = default; |
83 | | #endif |
84 | | |
85 | | void init_from_pb(const ColumnPB& column); |
86 | | void init_from_thrift(const TColumn& column); |
87 | | void to_schema_pb(ColumnPB* column) const; |
88 | | |
89 | 317k | int32_t unique_id() const { return _unique_id; } |
90 | 1.47k | void set_unique_id(int32_t id) { _unique_id = id; } |
91 | 233k | const std::string& name() const { return _col_name; } |
92 | 22.4k | const std::string& name_lower_case() const { return _col_name_lower_case; } |
93 | 4.47k | void set_name(std::string col_name) { |
94 | 4.47k | _col_name = col_name; |
95 | 4.47k | _col_name_lower_case = to_lower(_col_name); |
96 | 4.47k | } |
97 | 1.10M | MOCK_FUNCTION FieldType type() const { return _type; } |
98 | 4.77k | void set_type(FieldType type) { _type = type; } |
99 | 103k | bool is_key() const { return _is_key; } |
100 | 176k | bool is_nullable() const { return _is_nullable; } |
101 | 0 | bool is_auto_increment() const { return _is_auto_increment; } |
102 | 0 | bool is_seqeunce_col() const { return _col_name == SEQUENCE_COL; } |
103 | 0 | bool is_on_update_current_timestamp() const { return _is_on_update_current_timestamp; } |
104 | 83.0k | bool is_variant_type() const { return _type == FieldType::OLAP_FIELD_TYPE_VARIANT; } |
105 | 17.9k | bool is_bf_column() const { return _is_bf_column; } |
106 | 17.6k | bool has_bitmap_index() const { return _has_bitmap_index; } |
107 | 55.8k | bool is_array_type() const { return _type == FieldType::OLAP_FIELD_TYPE_ARRAY; } |
108 | 12.5k | bool is_agg_state_type() const { return _type == FieldType::OLAP_FIELD_TYPE_AGG_STATE; } |
109 | 0 | bool is_jsonb_type() const { return _type == FieldType::OLAP_FIELD_TYPE_JSONB; } |
110 | 0 | bool is_length_variable_type() const { |
111 | 0 | return _type == FieldType::OLAP_FIELD_TYPE_CHAR || |
112 | 0 | _type == FieldType::OLAP_FIELD_TYPE_VARCHAR || |
113 | 0 | _type == FieldType::OLAP_FIELD_TYPE_STRING || |
114 | 0 | _type == FieldType::OLAP_FIELD_TYPE_HLL || |
115 | 0 | _type == FieldType::OLAP_FIELD_TYPE_BITMAP || |
116 | 0 | _type == FieldType::OLAP_FIELD_TYPE_QUANTILE_STATE || |
117 | 0 | _type == FieldType::OLAP_FIELD_TYPE_AGG_STATE; |
118 | 0 | } |
119 | | // Such columns are not exist in frontend schema info, so we need to |
120 | | // add them into tablet_schema for later column indexing. |
121 | | static TabletColumn create_materialized_variant_column(const std::string& root, |
122 | | const std::vector<std::string>& paths, |
123 | | int32_t parent_unique_id, |
124 | | int32_t max_subcolumns_count); |
125 | 193 | bool has_default_value() const { return _has_default_value; } |
126 | 17.9k | std::string default_value() const { return _default_value; } |
127 | 174k | int32_t length() const { return _length; } |
128 | 2.23k | void set_length(int32_t length) { _length = length; } |
129 | 645 | void set_default_value(const std::string& default_value) { |
130 | 645 | _default_value = default_value; |
131 | 645 | _has_default_value = true; |
132 | 645 | } |
133 | 38.4k | int32_t index_length() const { return _index_length; } |
134 | 1.55k | void set_index_length(int32_t index_length) { _index_length = index_length; } |
135 | 1.26k | void set_is_key(bool is_key) { _is_key = is_key; } |
136 | 2.29k | void set_is_nullable(bool is_nullable) { _is_nullable = is_nullable; } |
137 | 0 | void set_is_auto_increment(bool is_auto_increment) { _is_auto_increment = is_auto_increment; } |
138 | 0 | void set_is_on_update_current_timestamp(bool is_on_update_current_timestamp) { |
139 | 0 | _is_on_update_current_timestamp = is_on_update_current_timestamp; |
140 | 0 | } |
141 | | void set_path_info(const vectorized::PathInData& path); |
142 | 29.4k | FieldAggregationMethod aggregation() const { return _aggregation; } |
143 | | vectorized::AggregateFunctionPtr get_aggregate_function_union( |
144 | | vectorized::DataTypePtr type, int current_be_exec_version) const; |
145 | | vectorized::AggregateFunctionPtr get_aggregate_function(std::string suffix, |
146 | | int current_be_exec_version) const; |
147 | 139k | int precision() const { return _precision; } |
148 | 139k | int frac() const { return _frac; } |
149 | 2 | inline bool visible() const { return _visible; } |
150 | | bool has_char_type() const; |
151 | | |
152 | 1.70k | void set_aggregation_method(FieldAggregationMethod agg) { |
153 | 1.70k | _aggregation = agg; |
154 | 1.70k | _aggregation_name = get_string_by_aggregation_type(agg); |
155 | 1.70k | } |
156 | | |
157 | | /** |
158 | | * Add a sub column. |
159 | | */ |
160 | | void add_sub_column(TabletColumn& sub_column); |
161 | | |
162 | 20.5k | uint32_t get_subtype_count() const { return _sub_column_count; } |
163 | 3.36k | MOCK_FUNCTION const TabletColumn& get_sub_column(uint64_t i) const { return *_sub_columns[i]; } |
164 | 1.03k | const std::vector<TabletColumnPtr>& get_sub_columns() const { return _sub_columns; } |
165 | | |
166 | | friend bool operator==(const TabletColumn& a, const TabletColumn& b); |
167 | | friend bool operator!=(const TabletColumn& a, const TabletColumn& b); |
168 | | |
169 | | static std::string get_string_by_field_type(FieldType type); |
170 | | static std::string get_string_by_aggregation_type(FieldAggregationMethod aggregation_type); |
171 | | static FieldType get_field_type_by_string(const std::string& str); |
172 | | static FieldType get_field_type_by_type(PrimitiveType type); |
173 | | static PrimitiveType get_primitive_type_by_field_type(FieldType type); |
174 | | static FieldAggregationMethod get_aggregation_type_by_string(const std::string& str); |
175 | | static uint32_t get_field_length_by_type(TPrimitiveType::type type, uint32_t string_length); |
176 | | bool is_row_store_column() const; |
177 | 15.9k | std::string get_aggregation_name() const { return _aggregation_name; } |
178 | 15.9k | bool get_result_is_nullable() const { return _result_is_nullable; } |
179 | 16.0k | int get_be_exec_version() const { return _be_exec_version; } |
180 | 88.8k | bool has_path_info() const { return _column_path != nullptr && !_column_path->empty(); } |
181 | 54.2k | const vectorized::PathInDataPtr& path_info_ptr() const { return _column_path; } |
182 | | // If it is an extracted column from variant column |
183 | 198k | bool is_extracted_column() const { |
184 | 198k | return _column_path != nullptr && !_column_path->empty() && _parent_col_unique_id > 0; |
185 | 198k | }; |
186 | 28.6k | std::string suffix_path() const { |
187 | 28.6k | return is_extracted_column() ? _column_path->get_path() : ""; |
188 | 28.6k | } |
189 | 12 | bool is_nested_subcolumn() const { |
190 | 12 | return _column_path != nullptr && _column_path->has_nested_part(); |
191 | 12 | } |
192 | 37.5k | int32_t parent_unique_id() const { return _parent_col_unique_id; } |
193 | 1.77k | void set_parent_unique_id(int32_t col_unique_id) { _parent_col_unique_id = col_unique_id; } |
194 | 392 | void set_is_bf_column(bool is_bf_column) { _is_bf_column = is_bf_column; } |
195 | 0 | void set_has_bitmap_index(bool has_bitmap_index) { _has_bitmap_index = has_bitmap_index; } |
196 | | std::shared_ptr<const vectorized::IDataType> get_vec_type() const; |
197 | | |
198 | 647 | Status check_valid() const { |
199 | 647 | if (type() != FieldType::OLAP_FIELD_TYPE_ARRAY && |
200 | 647 | type() != FieldType::OLAP_FIELD_TYPE_STRUCT && |
201 | 647 | type() != FieldType::OLAP_FIELD_TYPE_MAP) { |
202 | 647 | return Status::OK(); |
203 | 647 | } |
204 | 0 | if (is_bf_column()) { |
205 | 0 | return Status::NotSupported("Do not support bloom filter index, type={}", |
206 | 0 | get_string_by_field_type(type())); |
207 | 0 | } |
208 | 0 | if (has_bitmap_index()) { |
209 | 0 | return Status::NotSupported("Do not support bitmap index, type={}", |
210 | 0 | get_string_by_field_type(type())); |
211 | 0 | } |
212 | 0 | return Status::OK(); |
213 | 0 | } |
214 | | |
215 | 2 | void set_precision(int precision) { |
216 | 2 | _precision = precision; |
217 | 2 | _is_decimal = true; |
218 | 2 | } |
219 | | |
220 | 33 | void set_frac(int frac) { _frac = frac; } |
221 | | |
222 | 69 | void set_variant_max_subcolumns_count(int32_t variant_max_subcolumns_count) { |
223 | 69 | _variant_max_subcolumns_count = variant_max_subcolumns_count; |
224 | 69 | } |
225 | | |
226 | 13 | void set_variant_enable_typed_paths_to_sparse(bool enable) { |
227 | 13 | _variant_enable_typed_paths_to_sparse = enable; |
228 | 13 | } |
229 | | |
230 | | void set_variant_max_sparse_column_statistics_size( |
231 | 2 | int32_t variant_max_sparse_column_statistics_size) { |
232 | 2 | _variant_max_sparse_column_statistics_size = variant_max_sparse_column_statistics_size; |
233 | 2 | } |
234 | | |
235 | 0 | void set_variant_sparse_hash_shard_count(int32_t variant_sparse_hash_shard_count) { |
236 | 0 | _variant_sparse_hash_shard_count = variant_sparse_hash_shard_count; |
237 | 0 | } |
238 | | |
239 | 1.96k | int32_t variant_max_subcolumns_count() const { return _variant_max_subcolumns_count; } |
240 | | |
241 | 94 | PatternTypePB pattern_type() const { return _pattern_type; } |
242 | | |
243 | 410 | bool variant_enable_typed_paths_to_sparse() const { |
244 | 410 | return _variant_enable_typed_paths_to_sparse; |
245 | 410 | } |
246 | | |
247 | 20.8k | int32_t variant_max_sparse_column_statistics_size() const { |
248 | 20.8k | return _variant_max_sparse_column_statistics_size; |
249 | 20.8k | } |
250 | | |
251 | 314 | int32_t variant_sparse_hash_shard_count() const { return _variant_sparse_hash_shard_count; } |
252 | | |
253 | 31 | bool is_decimal() const { return _is_decimal; } |
254 | | |
255 | | private: |
256 | | int32_t _unique_id = -1; |
257 | | std::string _col_name; |
258 | | std::string _col_name_lower_case; |
259 | | // the field _type will change from TPrimitiveType |
260 | | // to string by 'EnumToString(TPrimitiveType, tcolumn.column_type.type, data_type);' (reference: TabletMeta::init_column_from_tcolumn) |
261 | | // to FieldType by 'TabletColumn::get_field_type_by_string' (reference: TabletColumn::init_from_pb). |
262 | | // And the _type in columnPB is string and it changed from FieldType by 'get_string_by_field_type' (reference: TabletColumn::to_schema_pb). |
263 | | FieldType _type; |
264 | | bool _is_key = false; |
265 | | FieldAggregationMethod _aggregation; |
266 | | std::string _aggregation_name; |
267 | | bool _is_nullable = false; |
268 | | bool _is_auto_increment = false; |
269 | | bool _is_on_update_current_timestamp {false}; |
270 | | |
271 | | bool _has_default_value = false; |
272 | | std::string _default_value; |
273 | | |
274 | | bool _is_decimal = false; |
275 | | int32_t _precision = -1; |
276 | | int32_t _frac = -1; |
277 | | |
278 | | int32_t _length = -1; |
279 | | int32_t _index_length = -1; |
280 | | |
281 | | bool _is_bf_column = false; |
282 | | |
283 | | bool _has_bitmap_index = false; |
284 | | bool _visible = true; |
285 | | |
286 | | std::vector<TabletColumnPtr> _sub_columns; |
287 | | uint32_t _sub_column_count = 0; |
288 | | |
289 | | bool _result_is_nullable = false; |
290 | | int _be_exec_version = -1; |
291 | | |
292 | | // The extracted sub-columns from "variant" contain the following information: |
293 | | int32_t _parent_col_unique_id = -1; // "variant" -> col_unique_id |
294 | | vectorized::PathInDataPtr _column_path; // the path of the sub-columns themselves |
295 | | |
296 | | int32_t _variant_max_subcolumns_count = 0; |
297 | | PatternTypePB _pattern_type = PatternTypePB::MATCH_NAME_GLOB; |
298 | | bool _variant_enable_typed_paths_to_sparse = false; |
299 | | // set variant_max_sparse_column_statistics_size |
300 | | int32_t _variant_max_sparse_column_statistics_size = |
301 | | BeConsts::DEFAULT_VARIANT_MAX_SPARSE_COLUMN_STATS_SIZE; |
302 | | // default to 0, no shard |
303 | | int32_t _variant_sparse_hash_shard_count = 0; |
304 | | }; |
305 | | |
306 | | bool operator==(const TabletColumn& a, const TabletColumn& b); |
307 | | bool operator!=(const TabletColumn& a, const TabletColumn& b); |
308 | | |
309 | | class TabletIndex : public MetadataAdder<TabletIndex> { |
310 | | public: |
311 | 7.60k | TabletIndex() = default; |
312 | | void init_from_thrift(const TOlapTableIndex& index, const TabletSchema& tablet_schema); |
313 | | void init_from_thrift(const TOlapTableIndex& index, const std::vector<int32_t>& column_uids); |
314 | | void init_from_pb(const TabletIndexPB& index); |
315 | | void to_schema_pb(TabletIndexPB* index) const; |
316 | | |
317 | 19.1k | int64_t index_id() const { return _index_id; } |
318 | 26 | const std::string& index_name() const { return _index_name; } |
319 | 12.0k | MOCK_FUNCTION IndexType index_type() const { return _index_type; } |
320 | 9.34k | const std::vector<int32_t>& col_unique_ids() const { return _col_unique_ids; } |
321 | 25.7k | MOCK_FUNCTION const std::map<std::string, std::string>& properties() const { |
322 | 25.7k | return _properties; |
323 | 25.7k | } |
324 | 1 | int32_t get_gram_size() const { |
325 | 1 | if (_properties.contains("gram_size")) { |
326 | 1 | return std::stoi(_properties.at("gram_size")); |
327 | 1 | } |
328 | | |
329 | 0 | return 0; |
330 | 1 | } |
331 | 1 | int32_t get_gram_bf_size() const { |
332 | 1 | if (_properties.contains("bf_size")) { |
333 | 1 | return std::stoi(_properties.at("bf_size")); |
334 | 1 | } |
335 | | |
336 | 0 | return 0; |
337 | 1 | } |
338 | | |
339 | 15.9k | const std::string& get_index_suffix() const { return _escaped_index_suffix_path; } |
340 | | |
341 | | void set_escaped_escaped_index_suffix_path(const std::string& name); |
342 | | |
343 | 2.28k | bool is_inverted_index() const { return _index_type == IndexType::INVERTED; } |
344 | | |
345 | 2 | bool is_ann_index() const { return _index_type == IndexType::ANN; } |
346 | | |
347 | 8 | void remove_parser_and_analyzer() { |
348 | 8 | _properties.erase(INVERTED_INDEX_PARSER_KEY); |
349 | 8 | _properties.erase(INVERTED_INDEX_PARSER_KEY_ALIAS); |
350 | 8 | _properties.erase(INVERTED_INDEX_CUSTOM_ANALYZER_KEY); |
351 | 8 | } |
352 | | |
353 | 7.48k | std::string field_pattern() const { |
354 | 7.48k | if (_properties.contains("field_pattern")) { |
355 | 8 | return _properties.at("field_pattern"); |
356 | 8 | } |
357 | 7.47k | return ""; |
358 | 7.48k | } |
359 | | |
360 | 8 | bool is_same_except_id(const TabletIndex* other) const { |
361 | 8 | return _escaped_index_suffix_path == other->_escaped_index_suffix_path && |
362 | 8 | _index_name == other->_index_name && _index_type == other->_index_type && |
363 | 8 | _col_unique_ids == other->_col_unique_ids && _properties == other->_properties; |
364 | 8 | } |
365 | | |
366 | | private: |
367 | | int64_t _index_id = -1; |
368 | | // Identify the different index with the same _index_id |
369 | | std::string _escaped_index_suffix_path; |
370 | | std::string _index_name; |
371 | | IndexType _index_type; |
372 | | std::vector<int32_t> _col_unique_ids; |
373 | | std::map<std::string, std::string> _properties; |
374 | | }; |
375 | | |
376 | | using TabletIndexPtr = std::shared_ptr<TabletIndex>; |
377 | | using TabletIndexes = std::vector<std::shared_ptr<TabletIndex>>; |
378 | | using PathSet = phmap::flat_hash_set<std::string>; |
379 | | |
380 | | class TabletSchema : public MetadataAdder<TabletSchema> { |
381 | | public: |
382 | | enum class ColumnType { NORMAL = 0, DROPPED = 1, VARIANT = 2 }; |
383 | | // TODO(yingchun): better to make constructor as private to avoid |
384 | | // manually init members incorrectly, and define a new function like |
385 | | // void create_from_pb(const TabletSchemaPB& schema, TabletSchema* tablet_schema). |
386 | | TabletSchema(); |
387 | | ~TabletSchema() override; |
388 | | |
389 | | // Init from pb |
390 | | // ignore_extracted_columns: ignore the extracted columns from variant column |
391 | | // reuse_cached_column: reuse the cached column in the schema if they are the same, to reduce memory usage |
392 | | void init_from_pb(const TabletSchemaPB& schema, bool ignore_extracted_columns = false, |
393 | | bool reuse_cached_column = false); |
394 | | // Notice: Use deterministic way to serialize protobuf, |
395 | | // since serialize Map in protobuf may could lead to un-deterministic by default |
396 | | template <class PbType> |
397 | 4.38k | static std::string deterministic_string_serialize(const PbType& pb) { |
398 | 4.38k | std::string output; |
399 | 4.38k | google::protobuf::io::StringOutputStream string_output_stream(&output); |
400 | 4.38k | google::protobuf::io::CodedOutputStream output_stream(&string_output_stream); |
401 | 4.38k | output_stream.SetSerializationDeterministic(true); |
402 | 4.38k | pb.SerializeToCodedStream(&output_stream); |
403 | 4.38k | return output; |
404 | 4.38k | } _ZN5doris12TabletSchema30deterministic_string_serializeINS_14TabletSchemaPBEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKT_ Line | Count | Source | 397 | 3.88k | static std::string deterministic_string_serialize(const PbType& pb) { | 398 | 3.88k | std::string output; | 399 | 3.88k | google::protobuf::io::StringOutputStream string_output_stream(&output); | 400 | 3.88k | google::protobuf::io::CodedOutputStream output_stream(&string_output_stream); | 401 | 3.88k | output_stream.SetSerializationDeterministic(true); | 402 | 3.88k | pb.SerializeToCodedStream(&output_stream); | 403 | 3.88k | return output; | 404 | 3.88k | } |
_ZN5doris12TabletSchema30deterministic_string_serializeINS_8ColumnPBEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKT_ Line | Count | Source | 397 | 340 | static std::string deterministic_string_serialize(const PbType& pb) { | 398 | 340 | std::string output; | 399 | 340 | google::protobuf::io::StringOutputStream string_output_stream(&output); | 400 | 340 | google::protobuf::io::CodedOutputStream output_stream(&string_output_stream); | 401 | 340 | output_stream.SetSerializationDeterministic(true); | 402 | 340 | pb.SerializeToCodedStream(&output_stream); | 403 | 340 | return output; | 404 | 340 | } |
_ZN5doris12TabletSchema30deterministic_string_serializeINS_13TabletIndexPBEEENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKT_ Line | Count | Source | 397 | 160 | static std::string deterministic_string_serialize(const PbType& pb) { | 398 | 160 | std::string output; | 399 | 160 | google::protobuf::io::StringOutputStream string_output_stream(&output); | 400 | 160 | google::protobuf::io::CodedOutputStream output_stream(&string_output_stream); | 401 | 160 | output_stream.SetSerializationDeterministic(true); | 402 | 160 | pb.SerializeToCodedStream(&output_stream); | 403 | 160 | return output; | 404 | 160 | } |
|
405 | | void to_schema_pb(TabletSchemaPB* tablet_meta_pb) const; |
406 | | void append_column(TabletColumn column, ColumnType col_type = ColumnType::NORMAL); |
407 | | void append_index(TabletIndex&& index); |
408 | | void remove_index(int64_t index_id); |
409 | | void clear_index(); |
410 | | // Must make sure the row column is always the last column |
411 | | void add_row_column(); |
412 | | void copy_from(const TabletSchema& tablet_schema); |
413 | | // lightweight copy, take care of lifecycle of TabletColumn |
414 | | void shawdow_copy_without_columns(const TabletSchema& tablet_schema); |
415 | | void update_index_info_from(const TabletSchema& tablet_schema); |
416 | | std::string to_key() const; |
417 | | // get_metadata_size is only the memory of the TabletSchema itself, not include child objects. |
418 | 67 | int64_t mem_size() const { return get_metadata_size(); } |
419 | | size_t row_size() const; |
420 | | int32_t field_index(const std::string& field_name) const; |
421 | | int32_t field_index(const vectorized::PathInData& path) const; |
422 | | int32_t field_index(int32_t col_unique_id) const; |
423 | | const TabletColumn& column(size_t ordinal) const; |
424 | | Result<const TabletColumn*> column(const std::string& field_name) const; |
425 | | Status have_column(const std::string& field_name) const; |
426 | | bool exist_column(const std::string& field_name) const; |
427 | | bool has_column_unique_id(int32_t col_unique_id) const; |
428 | | const TabletColumn& column_by_uid(int32_t col_unique_id) const; |
429 | | TabletColumn& mutable_column_by_uid(int32_t col_unique_id); |
430 | | TabletColumn& mutable_column(size_t ordinal); |
431 | | void replace_column(size_t pos, TabletColumn new_col); |
432 | | const std::vector<TabletColumnPtr>& columns() const; |
433 | 795k | size_t num_columns() const { return _num_columns; } |
434 | 1.08M | size_t num_key_columns() const { return _num_key_columns; } |
435 | 136k | const std::vector<uint32_t>& cluster_key_uids() const { return _cluster_key_uids; } |
436 | 0 | size_t num_null_columns() const { return _num_null_columns; } |
437 | 5.37k | size_t num_short_key_columns() const { return _num_short_key_columns; } |
438 | 0 | size_t num_rows_per_row_block() const { return _num_rows_per_row_block; } |
439 | 1.14k | size_t num_variant_columns() const { return _num_variant_columns; }; |
440 | 0 | size_t num_virtual_columns() const { return _num_virtual_columns; } |
441 | 7.12M | KeysType keys_type() const { return _keys_type; } |
442 | 5.62k | SortType sort_type() const { return _sort_type; } |
443 | 0 | size_t sort_col_num() const { return _sort_col_num; } |
444 | 0 | CompressKind compress_kind() const { return _compress_kind; } |
445 | 0 | size_t next_column_unique_id() const { return _next_column_unique_id; } |
446 | 4 | bool has_bf_fpp() const { return _has_bf_fpp; } |
447 | 4 | double bloom_filter_fpp() const { return _bf_fpp; } |
448 | 18.4k | bool is_in_memory() const { return _is_in_memory; } |
449 | 0 | void set_is_in_memory(bool is_in_memory) { _is_in_memory = is_in_memory; } |
450 | 2 | void set_disable_auto_compaction(bool disable_auto_compaction) { |
451 | 2 | _disable_auto_compaction = disable_auto_compaction; |
452 | 2 | } |
453 | 288 | bool disable_auto_compaction() const { return _disable_auto_compaction; } |
454 | 0 | void set_enable_variant_flatten_nested(bool flatten_nested) { |
455 | 0 | _enable_variant_flatten_nested = flatten_nested; |
456 | 0 | } |
457 | 0 | bool variant_flatten_nested() const { return _enable_variant_flatten_nested; } |
458 | 0 | void set_enable_single_replica_compaction(bool enable_single_replica_compaction) { |
459 | 0 | _enable_single_replica_compaction = enable_single_replica_compaction; |
460 | 0 | } |
461 | 356 | bool enable_single_replica_compaction() const { return _enable_single_replica_compaction; } |
462 | | // indicate if full row store column(all the columns encodes as row) exists |
463 | 0 | bool has_row_store_for_all_columns() const { |
464 | 0 | return _store_row_column && row_columns_uids().empty(); |
465 | 0 | } |
466 | 0 | void set_skip_write_index_on_load(bool skip) { _skip_write_index_on_load = skip; } |
467 | 73 | bool skip_write_index_on_load() const { return _skip_write_index_on_load; } |
468 | 8.19k | int32_t delete_sign_idx() const { return _delete_sign_idx; } |
469 | 143k | bool has_sequence_col() const { return _sequence_col_idx != -1; } |
470 | 64.7k | int32_t sequence_col_idx() const { return _sequence_col_idx; } |
471 | 0 | void set_version_col_idx(int32_t version_col_idx) { _version_col_idx = version_col_idx; } |
472 | 0 | int32_t version_col_idx() const { return _version_col_idx; } |
473 | 0 | bool has_skip_bitmap_col() const { return _skip_bitmap_col_idx != -1; } |
474 | 0 | int32_t skip_bitmap_col_idx() const { return _skip_bitmap_col_idx; } |
475 | 5.25k | segment_v2::CompressionTypePB compression_type() const { return _compression_type; } |
476 | 0 | void set_row_store_page_size(long page_size) { _row_store_page_size = page_size; } |
477 | 0 | long row_store_page_size() const { return _row_store_page_size; } |
478 | 0 | void set_storage_page_size(long storage_page_size) { _storage_page_size = storage_page_size; } |
479 | 15.9k | long storage_page_size() const { return _storage_page_size; } |
480 | 0 | void set_storage_dict_page_size(long storage_dict_page_size) { |
481 | 0 | _storage_dict_page_size = storage_dict_page_size; |
482 | 0 | } |
483 | 15.9k | long storage_dict_page_size() const { return _storage_dict_page_size; } |
484 | 0 | bool has_global_row_id() const { |
485 | 0 | for (auto [col_name, _] : _field_name_to_index) { |
486 | 0 | if (col_name.start_with(StringRef(BeConsts::GLOBAL_ROWID_COL.data(), |
487 | 0 | BeConsts::GLOBAL_ROWID_COL.size()))) { |
488 | 0 | return true; |
489 | 0 | } |
490 | 0 | } |
491 | 0 | return false; |
492 | 0 | } |
493 | | |
494 | 120 | const std::vector<const TabletIndex*> inverted_indexes() const { |
495 | 120 | std::vector<const TabletIndex*> inverted_indexes; |
496 | 1.26k | for (const auto& index : _indexes) { |
497 | 1.26k | if (index->index_type() == IndexType::INVERTED) { |
498 | 1.25k | inverted_indexes.emplace_back(index.get()); |
499 | 1.25k | } |
500 | 1.26k | } |
501 | 120 | return inverted_indexes; |
502 | 120 | } |
503 | 11.4k | bool has_inverted_index() const { |
504 | 11.4k | for (const auto& index : _indexes) { |
505 | 712 | DBUG_EXECUTE_IF("tablet_schema::has_inverted_index", { |
506 | 712 | if (index->col_unique_ids().empty()) { |
507 | 712 | throw Exception(Status::InternalError("col unique ids cannot be empty")); |
508 | 712 | } |
509 | 712 | }); |
510 | | |
511 | 712 | if (index->index_type() == IndexType::INVERTED) { |
512 | | //if index_id == -1, ignore it. |
513 | 706 | if (!index->col_unique_ids().empty() && index->col_unique_ids()[0] >= 0) { |
514 | 706 | return true; |
515 | 706 | } |
516 | 706 | } |
517 | 712 | } |
518 | 10.7k | return false; |
519 | 11.4k | } |
520 | | |
521 | 10.7k | bool has_ann_index() const { |
522 | 10.7k | for (const auto& index : _indexes) { |
523 | 7 | if (index->index_type() == IndexType::ANN) { |
524 | 5 | if (!index->col_unique_ids().empty() && index->col_unique_ids()[0] >= 0) { |
525 | 5 | return true; |
526 | 5 | } |
527 | 5 | } |
528 | 7 | } |
529 | 10.7k | return false; |
530 | 10.7k | } |
531 | | |
532 | | bool has_inverted_index_with_index_id(int64_t index_id) const; |
533 | | |
534 | | std::vector<const TabletIndex*> inverted_indexs(const TabletColumn& col) const; |
535 | | |
536 | | std::vector<const TabletIndex*> inverted_indexs(int32_t col_unique_id, |
537 | | const std::string& suffix_path = "") const; |
538 | | const TabletIndex* ann_index(const TabletColumn& col) const; |
539 | | |
540 | | // Regardless of whether this column supports inverted index |
541 | | // TabletIndex information will be returned as long as it exists. |
542 | | const TabletIndex* ann_index(int32_t col_unique_id, const std::string& suffix_path = "") const; |
543 | | |
544 | | std::vector<TabletIndexPtr> inverted_index_by_field_pattern( |
545 | | int32_t col_unique_id, const std::string& field_pattern) const; |
546 | | |
547 | | bool has_ngram_bf_index(int32_t col_unique_id) const; |
548 | | const TabletIndex* get_ngram_bf_index(int32_t col_unique_id) const; |
549 | | const TabletIndex* get_index(int32_t col_unique_id, IndexType index_type, |
550 | | const std::string& suffix_path) const; |
551 | | void update_indexes_from_thrift(const std::vector<doris::TOlapTableIndex>& indexes); |
552 | | // If schema version is not set, it should be -1 |
553 | 1.56k | int32_t schema_version() const { return _schema_version; } |
554 | | void clear_columns(); |
555 | | vectorized::Block create_block( |
556 | | const std::vector<uint32_t>& return_columns, |
557 | | const std::unordered_set<uint32_t>* tablet_columns_need_convert_null = nullptr) const; |
558 | | vectorized::Block create_block(bool ignore_dropped_col = true) const; |
559 | 2 | void set_schema_version(int32_t version) { _schema_version = version; } |
560 | 0 | void set_auto_increment_column(const std::string& auto_increment_column) { |
561 | 0 | _auto_increment_column = auto_increment_column; |
562 | 0 | } |
563 | 0 | std::string auto_increment_column() const { return _auto_increment_column; } |
564 | | |
565 | 28 | void set_table_id(int64_t table_id) { _table_id = table_id; } |
566 | 483 | int64_t table_id() const { return _table_id; } |
567 | 28 | void set_db_id(int64_t db_id) { _db_id = db_id; } |
568 | 0 | int64_t db_id() const { return _db_id; } |
569 | | void build_current_tablet_schema(int64_t index_id, int32_t version, |
570 | | const OlapTableIndexSchema* index, |
571 | | const TabletSchema& out_tablet_schema); |
572 | | |
573 | | // Merge columns that not exit in current schema, these column is dropped in current schema |
574 | | // but they are useful in some cases. For example, |
575 | | // 1. origin schema is ColA, ColB |
576 | | // 2. insert values 1, 2 |
577 | | // 3. delete where ColB = 2 |
578 | | // 4. drop ColB |
579 | | // 5. insert values 3 |
580 | | // 6. add column ColB, although it is name ColB, but it is different with previous ColB, the new ColB we name could call ColB' |
581 | | // 7. insert value 4, 5 |
582 | | // Then the read schema should be ColA, ColB, ColB' because the delete predicate need ColB to remove related data. |
583 | | // Because they have same name, so that the dropped column should not be added to the map, only with unique id. |
584 | | void merge_dropped_columns(const TabletSchema& src_schema); |
585 | | |
586 | | bool is_dropped_column(const TabletColumn& col) const; |
587 | | |
588 | | // copy extracted columns from src_schema |
589 | | void copy_extracted_columns(const TabletSchema& src_schema); |
590 | | |
591 | | // only reserve extracted columns |
592 | | void reserve_extracted_columns(); |
593 | | |
594 | 4.04k | std::string get_all_field_names() const { |
595 | 4.04k | std::string str = "["; |
596 | 4.04k | for (auto p : _field_name_to_index) { |
597 | 4.04k | if (str.size() > 1) { |
598 | 0 | str += ", "; |
599 | 0 | } |
600 | 4.04k | str += p.first.to_string() + "(" + std::to_string(_cols[p.second]->unique_id()) + ")"; |
601 | 4.04k | } |
602 | 4.04k | str += "]"; |
603 | 4.04k | return str; |
604 | 4.04k | } |
605 | | |
606 | | // Dump [(name, type, is_nullable), ...] |
607 | 1 | std::string dump_structure() const { |
608 | 1 | std::string str = "["; |
609 | 15 | for (auto p : _cols) { |
610 | 15 | if (str.size() > 1) { |
611 | 14 | str += ", "; |
612 | 14 | } |
613 | 15 | str += "("; |
614 | 15 | str += p->name(); |
615 | 15 | str += ", "; |
616 | 15 | str += TabletColumn::get_string_by_field_type(p->type()); |
617 | 15 | str += ", "; |
618 | 15 | str += "is_nullable:"; |
619 | 15 | str += (p->is_nullable() ? "true" : "false"); |
620 | 15 | str += ")"; |
621 | 15 | } |
622 | 1 | str += "]"; |
623 | 1 | return str; |
624 | 1 | } |
625 | | |
626 | 1 | std::string dump_full_schema() const { |
627 | 1 | std::string str = "["; |
628 | 4 | for (auto p : _cols) { |
629 | 4 | if (str.size() > 1) { |
630 | 3 | str += ", "; |
631 | 3 | } |
632 | 4 | ColumnPB col_pb; |
633 | 4 | p->to_schema_pb(&col_pb); |
634 | 4 | str += "("; |
635 | 4 | str += col_pb.ShortDebugString(); |
636 | 4 | str += ")"; |
637 | 4 | } |
638 | 1 | str += "]"; |
639 | 1 | return str; |
640 | 1 | } |
641 | | |
642 | | vectorized::Block create_block_by_cids(const std::vector<uint32_t>& cids) const; |
643 | | |
644 | | std::shared_ptr<TabletSchema> copy_without_variant_extracted_columns(); |
645 | 9.36k | InvertedIndexStorageFormatPB get_inverted_index_storage_format() const { |
646 | 9.36k | return _inverted_index_storage_format; |
647 | 9.36k | } |
648 | | |
649 | | void update_tablet_columns(const TabletSchema& tablet_schema, |
650 | | const std::vector<TColumn>& t_columns); |
651 | | |
652 | 0 | const std::vector<int32_t>& row_columns_uids() const { return _row_store_column_unique_ids; } |
653 | | |
654 | | int64_t get_metadata_size() const override; |
655 | | |
656 | | struct SubColumnInfo { |
657 | | TabletColumn column; |
658 | | TabletIndexes indexes; |
659 | | }; |
660 | | |
661 | | // all path in path_set_info are relative to the parent column |
662 | | struct PathsSetInfo { |
663 | | std::unordered_map<std::string, SubColumnInfo> typed_path_set; // typed columns |
664 | | std::unordered_map<std::string, TabletIndexes> subcolumn_indexes; // subcolumns indexes |
665 | | PathSet sub_path_set; // extracted columns |
666 | | PathSet sparse_path_set; // sparse columns |
667 | | }; |
668 | | |
669 | 41 | void set_path_set_info(std::unordered_map<int32_t, PathsSetInfo>&& path_set_info_map) { |
670 | 41 | _path_set_info_map = std::move(path_set_info_map); |
671 | 41 | } |
672 | | |
673 | 2 | const PathsSetInfo& path_set_info(int32_t unique_id) const { |
674 | 2 | return _path_set_info_map.at(unique_id); |
675 | 2 | } |
676 | | |
677 | 6 | bool need_record_variant_extended_schema() const { return variant_max_subcolumns_count() == 0; } |
678 | | |
679 | 11 | int32_t variant_max_subcolumns_count() const { |
680 | 12 | for (const auto& col : _cols) { |
681 | 12 | if (col->is_variant_type()) { |
682 | 7 | return col->variant_max_subcolumns_count(); |
683 | 7 | } |
684 | 12 | } |
685 | 4 | return 0; |
686 | 11 | } |
687 | | |
688 | 0 | void add_pruned_columns_data_type(int32_t col_unique_id, vectorized::DataTypePtr data_type) { |
689 | 0 | _pruned_columns_data_type[col_unique_id] = std::move(data_type); |
690 | 0 | } |
691 | | |
692 | 0 | void clear_pruned_columns_data_type() { _pruned_columns_data_type.clear(); } |
693 | | |
694 | 0 | bool has_pruned_columns() const { return !_pruned_columns_data_type.empty(); } |
695 | | |
696 | | // Whether new segments use externalized ColumnMetaPB layout (CMO) by default |
697 | 5.26k | bool is_external_segment_column_meta_used() const { |
698 | 5.26k | return _is_external_segment_column_meta_used; |
699 | 5.26k | } |
700 | | |
701 | 24 | void set_external_segment_meta_used_default(bool v) { |
702 | 24 | _is_external_segment_column_meta_used = v; |
703 | 24 | } |
704 | | |
705 | | private: |
706 | | friend bool operator==(const TabletSchema& a, const TabletSchema& b); |
707 | | friend bool operator!=(const TabletSchema& a, const TabletSchema& b); |
708 | 0 | TabletSchema(const TabletSchema&) = default; |
709 | | |
710 | | KeysType _keys_type = DUP_KEYS; |
711 | | SortType _sort_type = SortType::LEXICAL; |
712 | | size_t _sort_col_num = 0; |
713 | | std::vector<TabletColumnPtr> _cols; |
714 | | |
715 | | std::vector<TabletIndexPtr> _indexes; |
716 | | std::unordered_map<StringRef, int32_t, StringRefHash> _field_name_to_index; |
717 | | std::unordered_map<int32_t, int32_t> _field_uniqueid_to_index; |
718 | | std::unordered_map<vectorized::PathInDataRef, int32_t, vectorized::PathInDataRef::Hash> |
719 | | _field_path_to_index; |
720 | | |
721 | | // index_type/col_unique_id/suffix -> idxs in _indexes |
722 | | using IndexKey = std::tuple<IndexType, int32_t, std::string>; |
723 | | struct IndexKeyHash { |
724 | 56.2k | size_t operator()(const IndexKey& t) const { |
725 | 56.2k | uint32_t seed = 0; |
726 | 56.2k | seed = doris::HashUtil::hash((const char*)&std::get<0>(t), sizeof(std::get<0>(t)), |
727 | 56.2k | seed); |
728 | 56.2k | seed = doris::HashUtil::hash((const char*)&std::get<1>(t), sizeof(std::get<1>(t)), |
729 | 56.2k | seed); |
730 | 56.2k | seed = doris::HashUtil::hash((const char*)std::get<2>(t).c_str(), |
731 | 56.2k | static_cast<uint32_t>(std::get<2>(t).size()), seed); |
732 | 56.2k | return seed; |
733 | 56.2k | } |
734 | | }; |
735 | | std::unordered_map<IndexKey, std::vector<size_t>, IndexKeyHash> _col_id_suffix_to_index; |
736 | | |
737 | | int32_t _num_columns = 0; |
738 | | size_t _num_variant_columns = 0; |
739 | | size_t _num_virtual_columns = 0; |
740 | | size_t _num_key_columns = 0; |
741 | | std::vector<uint32_t> _cluster_key_uids; |
742 | | size_t _num_null_columns = 0; |
743 | | size_t _num_short_key_columns = 0; |
744 | | size_t _num_rows_per_row_block = 0; |
745 | | CompressKind _compress_kind = COMPRESS_NONE; |
746 | | segment_v2::CompressionTypePB _compression_type = segment_v2::CompressionTypePB::LZ4F; |
747 | | long _row_store_page_size = segment_v2::ROW_STORE_PAGE_SIZE_DEFAULT_VALUE; |
748 | | long _storage_page_size = segment_v2::STORAGE_PAGE_SIZE_DEFAULT_VALUE; |
749 | | long _storage_dict_page_size = segment_v2::STORAGE_DICT_PAGE_SIZE_DEFAULT_VALUE; |
750 | | size_t _next_column_unique_id = 0; |
751 | | std::string _auto_increment_column; |
752 | | |
753 | | bool _has_bf_fpp = false; |
754 | | double _bf_fpp = 0; |
755 | | bool _is_in_memory = false; |
756 | | int32_t _delete_sign_idx = -1; |
757 | | int32_t _sequence_col_idx = -1; |
758 | | int32_t _version_col_idx = -1; |
759 | | int32_t _skip_bitmap_col_idx = -1; |
760 | | int32_t _schema_version = -1; |
761 | | int64_t _table_id = -1; |
762 | | int64_t _db_id = -1; |
763 | | bool _disable_auto_compaction = false; |
764 | | bool _enable_single_replica_compaction = false; |
765 | | bool _store_row_column = false; |
766 | | bool _skip_write_index_on_load = false; |
767 | | InvertedIndexStorageFormatPB _inverted_index_storage_format = InvertedIndexStorageFormatPB::V1; |
768 | | |
769 | | // Contains column ids of which columns should be encoded into row store. |
770 | | // ATTN: For compability reason empty cids means all columns of tablet schema are encoded to row column |
771 | | std::vector<int32_t> _row_store_column_unique_ids; |
772 | | bool _enable_variant_flatten_nested = false; |
773 | | |
774 | | std::map<size_t, int32_t> _vir_col_idx_to_unique_id; |
775 | | std::map<int32_t, vectorized::DataTypePtr> _pruned_columns_data_type; |
776 | | |
777 | | // value: extracted path set and sparse path set |
778 | | std::unordered_map<int32_t, PathsSetInfo> _path_set_info_map; |
779 | | |
780 | | // key: field_pattern |
781 | | // value: indexes |
782 | | using PatternToIndex = std::unordered_map<std::string, std::vector<TabletIndexPtr>>; |
783 | | std::unordered_map<int32_t, PatternToIndex> _index_by_unique_id_with_pattern; |
784 | | |
785 | | // Default behavior for new segments: use external ColumnMeta region + CMO table if true |
786 | | bool _is_external_segment_column_meta_used = false; |
787 | | }; |
788 | | |
789 | | bool operator==(const TabletSchema& a, const TabletSchema& b); |
790 | | bool operator!=(const TabletSchema& a, const TabletSchema& b); |
791 | | |
792 | | using TabletSchemaSPtr = std::shared_ptr<TabletSchema>; |
793 | | |
794 | | #include "common/compile_check_end.h" |
795 | | } // namespace doris |