Coverage Report

Created: 2026-09-04 13:21

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/exec/common/variant_util.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/Descriptors_types.h>
21
#include <parallel_hashmap/phmap.h>
22
23
#include <cstddef>
24
#include <cstdint>
25
#include <map>
26
#include <string>
27
#include <string_view>
28
#include <unordered_map>
29
#include <vector>
30
31
#include "common/status.h"
32
#include "core/column/column.h"
33
#include "core/data_type/data_type.h"
34
#include "core/field.h"
35
#include "core/string_ref.h"
36
#include "core/types.h"
37
#include "exprs/aggregate/aggregate_function.h"
38
#include "storage/tablet/tablet_fwd.h"
39
#include "storage/tablet/tablet_schema.h"
40
41
namespace doris {
42
class TabletSchema;
43
enum class FieldType;
44
namespace segment_v2 {
45
struct VariantStatisticsPB;
46
} // namespace segment_v2
47
class Block;
48
class IColumn;
49
using MutableColumnPtr = IColumn::MutablePtr;
50
struct ColumnWithTypeAndName;
51
enum class ExtractType;
52
template <typename T>
53
class ColumnStr;
54
using ColumnString = ColumnStr<UInt32>;
55
} // namespace doris
56
57
const std::string SPARSE_COLUMN_PATH = "__DORIS_VARIANT_SPARSE__";
58
const std::string DOC_VALUE_COLUMN_PATH = "__DORIS_VARIANT_DOC_VALUE__";
59
namespace doris::variant_util {
60
61
// Convert a restricted glob pattern into a regex (for tests/internal use).
62
Status glob_to_regex(const std::string& glob_pattern, std::string* regex_pattern);
63
64
// Match a glob pattern against a path using RE2.
65
bool glob_match_re2(const std::string& glob_pattern, const std::string& candidate_path);
66
67
using PathToNoneNullValues = std::unordered_map<std::string, int64_t>;
68
using PathToDataTypes = std::unordered_map<PathInData, std::vector<DataTypePtr>, PathInData::Hash>;
69
70
82.6k
inline bool should_record_variant_path_stats(const TabletColumn& column) {
71
82.6k
    return !column.variant_enable_nested_group();
72
82.6k
}
73
74
0
inline bool should_write_variant_binary_columns(const TabletColumn& column) {
75
0
    return !column.variant_enable_nested_group();
76
0
}
77
78
11.7k
inline bool should_check_variant_path_stats(const TabletColumn& column) {
79
11.7k
    return !column.variant_enable_nested_group();
80
11.7k
}
81
82
struct VariantExtendedInfo {
83
    PathToNoneNullValues path_to_none_null_values; // key: path, value: number of none null values
84
    std::unordered_set<std::string> sparse_paths;  // sparse paths in this variant column
85
    std::unordered_set<std::string> typed_paths;   // typed paths in this variant column
86
    std::unordered_set<PathInData, PathInData::Hash>
87
            nested_paths;               // nested paths in this variant column
88
    PathToDataTypes path_to_data_types; // key: path, value: data types
89
    bool has_nested_group = false;      // whether this variant column has nested group
90
};
91
92
/// Returns number of dimensions in Array type. 0 if type is not array.
93
size_t get_number_of_dimensions(const IDataType& type);
94
95
/// Returns number of dimensions in Array column. 0 if column is not array.
96
size_t get_number_of_dimensions(const IColumn& column);
97
98
/// Returns type of scalars of Array of arbitrary dimensions.
99
DataTypePtr get_base_type_of_array(const DataTypePtr& type);
100
101
// Cast column to dst type
102
Status cast_column(const ColumnWithTypeAndName& arg, const DataTypePtr& type, ColumnPtr* result);
103
104
struct ExtraInfo {
105
    // -1 indicates it's not a Frontend generated column
106
    int32_t unique_id = -1;
107
    int32_t parent_unique_id = -1;
108
    PathInData path_info;
109
};
110
111
TabletColumn get_column_by_type(const DataTypePtr& data_type, const std::string& name,
112
                                const ExtraInfo& ext_info);
113
114
// check if the tuple_paths has ambiguous paths
115
// situation:
116
// throw exception if there exists a prefix with matched names, but not matched structure (is Nested, number of dimensions).
117
Status check_variant_has_no_ambiguous_paths(const std::vector<PathInData>& paths);
118
119
// Pick the tablet schema with the highest schema version as the reference.
120
// Then update all variant columns to there least common types.
121
// Return the final merged schema as common schema.
122
// If base_schema == nullptr then, max schema version tablet schema will be picked as base schema
123
Status get_least_common_schema(const std::vector<TabletSchemaSPtr>& schemas,
124
                               const TabletSchemaSPtr& base_schema, TabletSchemaSPtr& result,
125
                               bool check_schema_size = false);
126
127
// Get least common types for extracted columns which has Path info,
128
// with a speicified variant column's unique id
129
Status update_least_common_schema(const std::vector<TabletSchemaSPtr>& schemas,
130
                                  TabletSchemaSPtr& common_schema, int32_t variant_col_unique_id,
131
                                  std::set<PathInData>* path_set);
132
133
// inherit attributes like index/agg info from it's parent column
134
void inherit_column_attributes(TabletSchemaSPtr& schema);
135
136
// source: variant column
137
// target: extracted column from variant column
138
void inherit_column_attributes(const TabletColumn& source, TabletColumn& target,
139
                               TabletSchemaSPtr* target_schema = nullptr);
140
141
// Align variant subcolumn BF inheritance with FE BF-supported types.
142
bool is_bf_supported_by_fe_for_variant_subcolumn(FieldType type);
143
144
bool has_schema_index_diff(const TabletSchema* new_schema, const TabletSchema* old_schema,
145
                           int32_t new_col_idx, int32_t old_col_idx);
146
147
// create engine-side ColumnMap<String, String> for variant sparse/doc storage payloads.
148
MutableColumnPtr create_variant_binary_column();
149
150
DataTypePtr get_variant_binary_column_type();
151
152
// create TabletColumn Map<String, String> for sparse storage
153
TabletColumn create_sparse_column(const TabletColumn& variant);
154
155
// Create one bucket sparse column: name = variant.name_lower_case() + "." + SPARSE_COLUMN_PATH + ".b{index}"
156
TabletColumn create_sparse_shard_column(const TabletColumn& variant, int bucket_index);
157
158
TabletColumn create_doc_value_column(const TabletColumn& variant, int bucket_index);
159
160
// Compute bucket id for given path string using SipHash64(path) % bucket_num.
161
uint32_t variant_binary_shard_of(const StringRef& path, uint32_t bucket_num);
162
163
void get_field_info(const Field& field, FieldInfo* info);
164
165
// inherit index from parent column
166
bool inherit_index(const std::vector<const TabletIndex*>& parent_indexes,
167
                   TabletIndexes& sub_column_indexes, FieldType column_type,
168
                   const std::string& suffix_path, bool is_array_nested_type = false);
169
170
bool inherit_index(const std::vector<const TabletIndex*>& parent_indexes,
171
                   TabletIndexes& sub_column_indexes, const TabletColumn& column);
172
173
bool inherit_index(const std::vector<const TabletIndex*>& parent_indexes,
174
                   TabletIndexes& sub_column_indexes, const segment_v2::ColumnMetaPB& column_pb);
175
176
Status update_least_schema_internal(const std::map<PathInData, DataTypes>& subcolumns_types,
177
                                    TabletSchemaSPtr& common_schema, int32_t variant_col_unique_id,
178
                                    const std::map<std::string, TabletColumnPtr>& typed_columns,
179
                                    std::set<PathInData>* path_set = nullptr);
180
181
bool generate_sub_column_info(const TabletSchema& schema, int32_t col_unique_id,
182
                              const std::string& path,
183
                              TabletSchema::SubColumnInfo* sub_column_info);
184
185
class VariantCompactionUtil {
186
public:
187
    // get the subpaths and sparse paths for the variant column
188
    static void get_subpaths(int32_t max_subcolumns_count, const PathToNoneNullValues& path_stats,
189
                             TabletSchema::PathsSetInfo& paths_set_info);
190
191
    // collect extended info from the variant column
192
    static Status aggregate_variant_extended_info(
193
            const RowsetSharedPtr& rs,
194
            std::unordered_map<int32_t, VariantExtendedInfo>* uid_to_variant_extended_info);
195
196
    // collect path stats from the variant column
197
    static Status aggregate_path_to_stats(
198
            const RowsetSharedPtr& rs,
199
            std::unordered_map<int32_t, PathToNoneNullValues>* uid_to_path_stats);
200
201
    // Build the temporary schema for compaction, this will reduce the memory usage of compacting variant columns
202
    static Status get_extended_compaction_schema(const std::vector<RowsetSharedPtr>& rowsets,
203
                                                 TabletSchemaSPtr& target);
204
205
    // Used to collect all the subcolumns types of variant column from rowsets
206
    static TabletSchemaSPtr calculate_variant_extended_schema(
207
            const std::vector<RowsetSharedPtr>& rowsets, const TabletSchemaSPtr& base_schema);
208
209
    // Check if the path stats are consistent between inputs rowsets and output rowset.
210
    // Used to check the correctness of compaction.
211
    static Status check_path_stats(const std::vector<RowsetSharedPtr>& intputs,
212
                                   RowsetSharedPtr output, BaseTabletSPtr tablet);
213
214
    // Calculate statistics about variant data paths from the encoded sparse column
215
    static void calculate_variant_stats(const IColumn& encoded_sparse_column,
216
                                        segment_v2::VariantStatisticsPB* stats,
217
                                        size_t max_sparse_column_statistics_size, size_t row_pos,
218
                                        size_t num_rows);
219
220
    static void get_compaction_subcolumns_from_subpaths(
221
            TabletSchema::PathsSetInfo& paths_set_info, const TabletColumnPtr parent_column,
222
            const TabletSchemaSPtr& target, const PathToDataTypes& path_to_data_types,
223
            const std::unordered_set<std::string>& sparse_paths, TabletSchemaSPtr& output_schema);
224
225
    static void get_compaction_subcolumns_from_data_types(
226
            TabletSchema::PathsSetInfo& paths_set_info, const TabletColumnPtr parent_column,
227
            const TabletSchemaSPtr& target, const PathToDataTypes& path_to_data_types,
228
            TabletSchemaSPtr& output_schema);
229
230
    static Status get_compaction_typed_columns(const TabletSchemaSPtr& target,
231
                                               const std::unordered_set<std::string>& typed_paths,
232
                                               const TabletColumnPtr parent_column,
233
                                               TabletSchemaSPtr& output_schema,
234
                                               TabletSchema::PathsSetInfo& paths_set_info);
235
236
    static Status get_compaction_nested_columns(
237
            const std::unordered_set<PathInData, PathInData::Hash>& nested_paths,
238
            const PathToDataTypes& path_to_data_types, const TabletColumnPtr parent_column,
239
            TabletSchemaSPtr& output_schema, TabletSchema::PathsSetInfo& paths_set_info);
240
};
241
242
} // namespace  doris::variant_util