Coverage Report

Created: 2026-09-23 07:00

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