Coverage Report

Created: 2026-05-15 05:27

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/exec/sink/vrow_distribution.cpp
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
#include "exec/sink/vrow_distribution.h"
19
20
#include <gen_cpp/FrontendService.h>
21
#include <gen_cpp/FrontendService_types.h>
22
#include <glog/logging.h>
23
24
#include <cstdint>
25
#include <memory>
26
#include <string>
27
28
#include "common/cast_set.h"
29
#include "common/logging.h"
30
#include "common/metrics/doris_metrics.h"
31
#include "common/status.h"
32
#include "core/assert_cast.h"
33
#include "core/column/column.h"
34
#include "core/column/column_const.h"
35
#include "core/column/column_nullable.h"
36
#include "core/column/column_vector.h"
37
#include "core/data_type/data_type.h"
38
#include "exec/sink/writer/vtablet_writer.h"
39
#include "runtime/exec_env.h"
40
#include "runtime/query_context.h"
41
#include "runtime/runtime_state.h"
42
#include "service/backend_options.h"
43
#include "util/client_cache.h"
44
#include "util/debug_points.h"
45
#include "util/thrift_rpc_helper.h"
46
47
namespace doris {
48
49
40.9k
std::pair<VExprContextSPtrs, VExprSPtrs> VRowDistribution::_get_partition_function() {
50
40.9k
    return {_vpartition->get_part_func_ctx(), _vpartition->get_partition_function()};
51
40.9k
}
52
53
Status VRowDistribution::_save_missing_values(
54
        const Block& input_block,
55
        std::vector<std::vector<std::string>>& col_strs, // non-const ref for move
56
        int col_size, Block* block, const std::vector<uint32_t>& filter,
57
177
        const std::vector<const NullMap*>& col_null_maps) {
58
    // de-duplication for new partitions but save all rows.
59
177
    RETURN_IF_ERROR(
60
177
            _batching_block->add_rows(&input_block, filter.data(), filter.data() + filter.size()));
61
177
    std::vector<TNullableStringLiteral> cur_row_values;
62
25.1k
    for (int row = 0; row < col_strs[0].size(); ++row) {
63
24.9k
        cur_row_values.clear();
64
49.9k
        for (int col = 0; col < col_size; ++col) {
65
25.0k
            TNullableStringLiteral node;
66
25.0k
            const auto* null_map = col_null_maps[col]; // null map for this col
67
25.0k
            node.__set_is_null((null_map && (*null_map)[filter[row]])
68
25.0k
                                       ? true
69
25.0k
                                       : node.is_null); // if not, dont change(default false)
70
25.0k
            if (!node.is_null) {
71
24.9k
                node.__set_value(col_strs[col][row]);
72
24.9k
            }
73
25.0k
            cur_row_values.push_back(node);
74
25.0k
        }
75
24.9k
        if (!_deduper.contains(cur_row_values)) {
76
359
            _deduper.insert(cur_row_values);
77
359
            _partitions_need_create.emplace_back(cur_row_values);
78
359
        }
79
24.9k
    }
80
81
    // to avoid too large mem use
82
177
    if (_batching_block->rows() > _batch_size) {
83
2
        _deal_batched = true;
84
2
    }
85
177
    _batching_rows = _batching_block->rows();
86
177
    VLOG_NOTICE << "pushed some batching lines, now numbers = " << _batching_rows;
87
88
177
    return Status::OK();
89
177
}
90
91
173
void VRowDistribution::clear_batching_stats() {
92
173
    _partitions_need_create.clear();
93
173
    _batching_rows = 0;
94
173
    _batching_bytes = 0;
95
173
}
96
97
173
Status VRowDistribution::automatic_create_partition() {
98
173
    MonotonicStopWatch timer;
99
173
    if (_state->enable_profile() && _state->profile_level() >= 2) {
100
0
        timer.start();
101
0
    }
102
103
173
    SCOPED_TIMER(_add_partition_request_timer);
104
173
    TCreatePartitionRequest request;
105
173
    TCreatePartitionResult result;
106
173
    bool injected = false;
107
173
    std::string be_endpoint = BackendOptions::get_be_endpoint();
108
173
    request.__set_txn_id(_txn_id);
109
173
    request.__set_db_id(_vpartition->db_id());
110
173
    request.__set_table_id(_vpartition->table_id());
111
173
    request.__set_partitionValues(_partitions_need_create);
112
173
    request.__set_be_endpoint(be_endpoint);
113
173
    request.__set_write_single_replica(_write_single_replica);
114
173
    if (_state && _state->get_query_ctx()) {
115
        // Pass query_id to FE so it can determine if this is a multi-instance load by checking Coordinator
116
173
        request.__set_query_id(_state->get_query_ctx()->query_id());
117
173
    }
118
119
173
    DBUG_EXECUTE_IF("VRowDistribution.automatic_create_partition.inject_result", {
120
173
        DBUG_RUN_CALLBACK(&request, &result);
121
173
        injected = true;
122
173
    });
123
124
173
    VLOG_NOTICE << "automatic partition rpc begin request " << request;
125
173
    if (!injected) {
126
171
        std::shared_ptr<TNetworkAddress> master_addr;
127
171
        if (_vpartition->get_master_address() == nullptr) {
128
171
            auto* cluster_info = ExecEnv::GetInstance()->cluster_info();
129
171
            if (cluster_info == nullptr) {
130
0
                return Status::InternalError("cluster_info is null");
131
0
            }
132
171
            master_addr = std::make_shared<TNetworkAddress>(cluster_info->master_fe_addr);
133
171
        } else {
134
0
            master_addr = _vpartition->get_master_address();
135
0
        }
136
171
        int time_out = _state->execution_timeout() * 1000;
137
171
        RETURN_IF_ERROR(ThriftRpcHelper::rpc<FrontendServiceClient>(
138
171
                master_addr->hostname, master_addr->port,
139
171
                [&request, &result](FrontendServiceConnection& client) {
140
171
                    client->createPartition(result, request);
141
171
                },
142
171
                time_out));
143
171
    }
144
145
173
    Status status(Status::create(result.status));
146
173
    VLOG_NOTICE << "automatic partition rpc end response " << result;
147
173
    if (result.status.status_code == TStatusCode::OK) {
148
173
        RETURN_IF_ERROR(_create_partition_callback(_caller, &result));
149
        // add new created partitions
150
173
        RETURN_IF_ERROR(_vpartition->add_partitions(result.partitions));
151
359
        for (const auto& part : result.partitions) {
152
359
            _new_partition_ids.insert(part.id);
153
359
            VLOG_TRACE << "record new id: " << part.id;
154
359
        }
155
173
    }
156
157
    // Record this request's elapsed time
158
173
    if (_state->enable_profile() && _state->profile_level() >= 2) {
159
0
        int64_t elapsed_ns = timer.elapsed_time();
160
0
        _add_partition_request_times.push_back(elapsed_ns);
161
0
    }
162
173
    return status;
163
173
}
164
165
// for reuse the same create callback of create-partition
166
20
static TCreatePartitionResult cast_as_create_result(const TReplacePartitionResult& arg) {
167
20
    TCreatePartitionResult result;
168
20
    result.status = arg.status;
169
20
    result.nodes = arg.nodes;
170
20
    result.partitions = arg.partitions;
171
20
    result.tablets = arg.tablets;
172
20
    result.slave_tablets = arg.slave_tablets;
173
20
    return result;
174
20
}
175
176
// use _partitions and replace them
177
34
Status VRowDistribution::_replace_overwriting_partition() {
178
34
    SCOPED_TIMER(_add_partition_request_timer); // also for replace_partition
179
34
    TReplacePartitionRequest request;
180
34
    TReplacePartitionResult result;
181
34
    bool injected = false;
182
34
    request.__set_overwrite_group_id(_vpartition->get_overwrite_group_id());
183
34
    request.__set_db_id(_vpartition->db_id());
184
34
    request.__set_table_id(_vpartition->table_id());
185
34
    request.__set_write_single_replica(_write_single_replica);
186
187
    // only request for partitions not recorded for replacement
188
34
    std::set<int64_t> id_deduper;
189
60.0k
    for (const auto* part : _partitions) {
190
60.0k
        if (part != nullptr) {
191
47.7k
            if (_new_partition_ids.contains(part->id)) {
192
                // this is a new partition. dont replace again.
193
39.5k
                VLOG_TRACE << "skip new partition: " << part->id;
194
39.5k
            } else {
195
                // request for replacement
196
8.24k
                id_deduper.insert(part->id);
197
8.24k
            }
198
47.7k
        } else if (_missing_map.empty()) {
199
            // no origin partition. and not allow to create.
200
6
            return Status::InvalidArgument(
201
6
                    "Cannot found origin partitions in auto detect overwriting, stop "
202
6
                    "processing");
203
6
        } // else: part is null and _missing_map is not empty. dealed outside using auto-partition way. nothing to do here.
204
60.0k
    }
205
28
    if (id_deduper.empty()) {
206
8
        return Status::OK(); // no need to request
207
8
    }
208
    // de-duplicate. there's no check in FE
209
20
    std::vector<int64_t> request_part_ids(id_deduper.begin(), id_deduper.end());
210
211
20
    request.__set_partition_ids(request_part_ids);
212
213
20
    std::string be_endpoint = BackendOptions::get_be_endpoint();
214
20
    request.__set_be_endpoint(be_endpoint);
215
20
    if (_state && _state->get_query_ctx()) {
216
        // Pass query_id to FE so it can determine if this is a multi-instance load by checking Coordinator
217
20
        request.__set_query_id(_state->get_query_ctx()->query_id());
218
20
    }
219
220
20
    DBUG_EXECUTE_IF("VRowDistribution.replace_overwriting_partition.inject_result", {
221
20
        DBUG_RUN_CALLBACK(&request, &result);
222
20
        injected = true;
223
20
    });
224
225
20
    VLOG_NOTICE << "auto detect replace partition request: " << request;
226
20
    if (!injected) {
227
19
        std::shared_ptr<TNetworkAddress> master_addr;
228
19
        if (_vpartition->get_master_address() == nullptr) {
229
19
            auto* cluster_info = ExecEnv::GetInstance()->cluster_info();
230
19
            if (cluster_info == nullptr) {
231
0
                return Status::InternalError("cluster_info is null");
232
0
            }
233
19
            master_addr = std::make_shared<TNetworkAddress>(cluster_info->master_fe_addr);
234
19
        } else {
235
0
            master_addr = _vpartition->get_master_address();
236
0
        }
237
19
        int time_out = _state->execution_timeout() * 1000;
238
19
        RETURN_IF_ERROR(ThriftRpcHelper::rpc<FrontendServiceClient>(
239
19
                master_addr->hostname, master_addr->port,
240
19
                [&request, &result](FrontendServiceConnection& client) {
241
19
                    client->replacePartition(result, request);
242
19
                },
243
19
                time_out));
244
19
    }
245
246
20
    Status status(Status::create(result.status));
247
20
    VLOG_NOTICE << "auto detect replace partition result: " << result;
248
20
    if (result.status.status_code == TStatusCode::OK) {
249
        // Reuse the function as the args' structure are same. It adds nodes/locations
250
        // and waits for incremental_open before the new tablets become routable.
251
20
        auto result_as_create = cast_as_create_result(result);
252
20
        RETURN_IF_ERROR(_create_partition_callback(_caller, &result_as_create));
253
        // record new partitions
254
32
        for (const auto& part : result.partitions) {
255
32
            _new_partition_ids.insert(part.id);
256
32
            VLOG_TRACE << "record new id: " << part.id;
257
32
        }
258
        // replace data in _partitions
259
20
        RETURN_IF_ERROR(_vpartition->replace_partitions(request_part_ids, result.partitions));
260
20
    }
261
262
20
    return status;
263
20
}
264
265
void VRowDistribution::_get_tablet_ids(Block* block, int32_t index_idx,
266
41.4k
                                       std::vector<int64_t>& tablet_ids) {
267
41.4k
    tablet_ids.resize(block->rows());
268
35.7M
    for (int row_idx = 0; row_idx < block->rows(); row_idx++) {
269
35.7M
        if (_skip[row_idx]) {
270
25.8k
            continue;
271
25.8k
        }
272
35.7M
        auto& partition = _partitions[row_idx];
273
35.7M
        auto& tablet_index = _tablet_indexes[row_idx];
274
35.7M
        auto& index = partition->indexes[index_idx];
275
276
35.7M
        auto tablet_id = index.tablets[tablet_index];
277
35.7M
        tablet_ids[row_idx] = tablet_id;
278
35.7M
    }
279
41.4k
}
280
281
41.4k
void VRowDistribution::_filter_block_by_skip(Block* block, RowPartTabletIds& row_part_tablet_id) {
282
41.4k
    auto& row_ids = row_part_tablet_id.row_ids;
283
41.4k
    auto& partition_ids = row_part_tablet_id.partition_ids;
284
41.4k
    auto& tablet_ids = row_part_tablet_id.tablet_ids;
285
286
41.4k
    auto rows = block->rows();
287
    // row count of a block should not exceed UINT32_MAX
288
41.4k
    auto rows_uint32 = cast_set<uint32_t>(rows);
289
35.8M
    for (uint32_t i = 0; i < rows_uint32; i++) {
290
35.8M
        if (!_skip[i]) {
291
35.8M
            row_ids.emplace_back(i);
292
35.8M
            partition_ids.emplace_back(_partitions[i]->id);
293
35.8M
            tablet_ids.emplace_back(_tablet_ids[i]);
294
35.8M
        }
295
35.8M
    }
296
41.4k
}
297
298
Status VRowDistribution::_filter_block_by_skip_and_where_clause(
299
35
        Block* block, const VExprContextSPtr& where_clause, RowPartTabletIds& row_part_tablet_id) {
300
    // TODO
301
    //SCOPED_RAW_TIMER(&_stat.where_clause_ns);
302
35
    ColumnPtr filter_column;
303
35
    RETURN_IF_ERROR(where_clause->execute(block, filter_column));
304
305
35
    auto& row_ids = row_part_tablet_id.row_ids;
306
35
    auto& partition_ids = row_part_tablet_id.partition_ids;
307
35
    auto& tablet_ids = row_part_tablet_id.tablet_ids;
308
35
    if (const auto* nullable_column = check_and_get_column<ColumnNullable>(*filter_column)) {
309
29
        auto rows = block->rows();
310
        // row count of a block should not exceed UINT32_MAX
311
29
        auto rows_uint32 = cast_set<uint32_t>(rows);
312
58
        for (uint32_t i = 0; i < rows_uint32; i++) {
313
29
            if (nullable_column->get_bool_inline(i) && !_skip[i]) {
314
12
                row_ids.emplace_back(i);
315
12
                partition_ids.emplace_back(_partitions[i]->id);
316
12
                tablet_ids.emplace_back(_tablet_ids[i]);
317
12
            }
318
29
        }
319
29
    } else if (const auto* const_column = check_and_get_column<ColumnConst>(*filter_column)) {
320
1
        bool ret = const_column->get_bool(0);
321
1
        if (!ret) {
322
1
            return Status::OK();
323
1
        }
324
        // should we optimize?
325
0
        _filter_block_by_skip(block, row_part_tablet_id);
326
5
    } else {
327
5
        const auto& filter = assert_cast<const ColumnUInt8&>(*filter_column).get_data();
328
5
        auto rows = block->rows();
329
        // row count of a block should not exceed UINT32_MAX
330
5
        auto rows_uint32 = cast_set<uint32_t>(rows);
331
15
        for (uint32_t i = 0; i < rows_uint32; i++) {
332
10
            if (filter[i] != 0 && !_skip[i]) {
333
6
                row_ids.emplace_back(i);
334
6
                partition_ids.emplace_back(_partitions[i]->id);
335
6
                tablet_ids.emplace_back(_tablet_ids[i]);
336
6
            }
337
10
        }
338
5
    }
339
340
34
    return Status::OK();
341
35
}
342
343
Status VRowDistribution::_filter_block(Block* block,
344
40.4k
                                       std::vector<RowPartTabletIds>& row_part_tablet_ids) {
345
81.9k
    for (int i = 0; i < _schema->indexes().size(); i++) {
346
41.4k
        _get_tablet_ids(block, i, _tablet_ids);
347
41.4k
        auto& where_clause = _schema->indexes()[i]->where_clause;
348
41.4k
        if (where_clause != nullptr) {
349
35
            RETURN_IF_ERROR(_filter_block_by_skip_and_where_clause(block, where_clause,
350
35
                                                                   row_part_tablet_ids[i]));
351
41.4k
        } else {
352
41.4k
            _filter_block_by_skip(block, row_part_tablet_ids[i]);
353
41.4k
        }
354
41.4k
    }
355
40.4k
    return Status::OK();
356
40.4k
}
357
358
Status VRowDistribution::_generate_rows_distribution_for_non_auto_partition(
359
40.1k
        Block* block, bool has_filtered_rows, std::vector<RowPartTabletIds>& row_part_tablet_ids) {
360
40.1k
    int num_rows = cast_set<int>(block->rows());
361
362
40.1k
    RETURN_IF_ERROR(_tablet_finder->find_tablets(_state, block, num_rows, _partitions,
363
40.1k
                                                 _tablet_indexes, _skip));
364
40.1k
    if (has_filtered_rows) {
365
634
        for (int i = 0; i < num_rows; i++) {
366
563
            _skip[i] = _skip[i] || _block_convertor->filter_map()[i];
367
563
        }
368
71
    }
369
40.1k
    RETURN_IF_ERROR(_filter_block(block, row_part_tablet_ids));
370
40.1k
    return Status::OK();
371
40.1k
}
372
373
Status VRowDistribution::_deal_missing_map(const Block& input_block, Block* block,
374
                                           const std::vector<uint16_t>& partition_cols_idx,
375
177
                                           int64_t& rows_stat_val) {
376
    // for missing partition keys, calc the missing partition and save in _partitions_need_create
377
177
    auto [part_ctxs, part_exprs] = _get_partition_function();
378
177
    int part_col_num = cast_set<int>(part_exprs.size());
379
    // the two vectors are in column-first-order
380
177
    std::vector<std::vector<std::string>> col_strs;
381
177
    std::vector<const NullMap*> col_null_maps;
382
177
    col_strs.resize(part_col_num);
383
177
    col_null_maps.reserve(part_col_num);
384
385
177
    auto format_options = DataTypeSerDe::get_default_format_options();
386
177
    format_options.timezone = &_state->timezone_obj();
387
388
362
    for (int i = 0; i < part_col_num; ++i) {
389
185
        auto return_type = part_exprs[i]->data_type();
390
        // expose the data column. the return type would be nullable
391
185
        const auto& [range_left_col, col_const] =
392
185
                unpack_if_const(block->get_by_position(partition_cols_idx[i]).column);
393
185
        if (range_left_col->is_nullable()) {
394
47
            col_null_maps.push_back(&(
395
47
                    assert_cast<const ColumnNullable*>(range_left_col.get())->get_null_map_data()));
396
138
        } else {
397
138
            col_null_maps.push_back(nullptr);
398
138
        }
399
25.0k
        for (auto row : _missing_map) {
400
25.0k
            col_strs[i].push_back(return_type->to_string(
401
25.0k
                    *range_left_col, index_check_const(row, col_const), format_options));
402
25.0k
        }
403
185
    }
404
405
    // calc the end value and save them. in the end of sending, we will create partitions for them and deal them.
406
    // NOTE: must save old batching stats before calling _save_missing_values(),
407
    // because _save_missing_values() will update _batching_rows internally.
408
177
    size_t old_bt_rows = _batching_rows;
409
177
    size_t old_bt_bytes = _batching_bytes;
410
411
177
    RETURN_IF_ERROR(_save_missing_values(input_block, col_strs, part_col_num, block, _missing_map,
412
177
                                         col_null_maps));
413
414
177
    size_t new_bt_rows = _batching_block->rows();
415
177
    size_t new_bt_bytes = _batching_block->bytes();
416
177
    rows_stat_val -= new_bt_rows - old_bt_rows;
417
177
    _state->update_num_rows_load_total(old_bt_rows - new_bt_rows);
418
177
    _state->update_num_bytes_load_total(old_bt_bytes - new_bt_bytes);
419
177
    DorisMetrics::instance()->load_rows->increment(old_bt_rows - new_bt_rows);
420
177
    DorisMetrics::instance()->load_bytes->increment(old_bt_bytes - new_bt_bytes);
421
422
177
    return Status::OK();
423
177
}
424
425
Status VRowDistribution::_generate_rows_distribution_for_auto_partition(
426
        const Block& input_block, Block* block, const std::vector<uint16_t>& partition_cols_idx,
427
        bool has_filtered_rows, std::vector<RowPartTabletIds>& row_part_tablet_ids,
428
328
        int64_t& rows_stat_val) {
429
328
    int num_rows = cast_set<int>(block->rows());
430
328
    std::vector<uint16_t> partition_keys = _vpartition->get_partition_keys();
431
432
328
    auto& partition_col = block->get_by_position(partition_keys[0]);
433
328
    _missing_map.clear();
434
328
    _missing_map.reserve(partition_col.column->size());
435
436
328
    RETURN_IF_ERROR(_tablet_finder->find_tablets(_state, block, num_rows, _partitions,
437
328
                                                 _tablet_indexes, _skip, &_missing_map));
438
439
    // the missing vals for auto partition are also skipped.
440
328
    if (has_filtered_rows) {
441
8
        for (int i = 0; i < num_rows; i++) {
442
4
            _skip[i] = _skip[i] || _block_convertor->filter_map()[i];
443
4
        }
444
4
    }
445
328
    RETURN_IF_ERROR(_filter_block(block, row_part_tablet_ids));
446
447
328
    if (!_missing_map.empty()) {
448
174
        RETURN_IF_ERROR(_deal_missing_map(input_block, block, partition_cols_idx,
449
174
                                          rows_stat_val)); // send input block to save
450
174
    }
451
328
    return Status::OK();
452
328
}
453
454
Status VRowDistribution::_generate_rows_distribution_for_auto_overwrite(
455
        const Block& input_block, Block* block, const std::vector<uint16_t>& partition_cols_idx,
456
        bool has_filtered_rows, std::vector<RowPartTabletIds>& row_part_tablet_ids,
457
34
        int64_t& rows_stat_val) {
458
34
    int num_rows = cast_set<int>(block->rows());
459
460
    // for non-auto-partition situation, goes into two 'else' branch. just find the origin partitions, replace them by rpc,
461
    //  and find the new partitions to use.
462
    // for auto-partition's, find and save origins in _partitions and replace them. at meanwhile save the missing values for auto
463
    //  partition. then we find partition again to get replaced partitions in _partitions. this time _missing_map is ignored cuz
464
    //  we already saved missing values.
465
34
    if (_vpartition->is_auto_partition() &&
466
34
        _state->query_options().enable_auto_create_when_overwrite) {
467
        // allow auto create partition for missing rows.
468
10
        std::vector<uint16_t> partition_keys = _vpartition->get_partition_keys();
469
10
        auto partition_col = block->get_by_position(partition_keys[0]);
470
10
        _missing_map.clear();
471
10
        _missing_map.reserve(partition_col.column->size());
472
473
10
        RETURN_IF_ERROR(_tablet_finder->find_tablets(_state, block, num_rows, _partitions,
474
10
                                                     _tablet_indexes, _skip, &_missing_map));
475
476
        // allow and really need to create during auto-detect-overwriting.
477
10
        if (!_missing_map.empty()) {
478
3
            RETURN_IF_ERROR(
479
3
                    _deal_missing_map(input_block, block, partition_cols_idx, rows_stat_val));
480
3
        }
481
24
    } else {
482
24
        RETURN_IF_ERROR(_tablet_finder->find_tablets(_state, block, num_rows, _partitions,
483
24
                                                     _tablet_indexes, _skip));
484
24
    }
485
34
    RETURN_IF_ERROR(_replace_overwriting_partition());
486
487
    // regenerate locations for new partitions & tablets
488
28
    _reset_find_tablets(num_rows);
489
28
    if (_vpartition->is_auto_partition() &&
490
28
        _state->query_options().enable_auto_create_when_overwrite) {
491
        // here _missing_map is just a placeholder
492
10
        RETURN_IF_ERROR(_tablet_finder->find_tablets(_state, block, num_rows, _partitions,
493
10
                                                     _tablet_indexes, _skip, &_missing_map));
494
10
        if (VLOG_TRACE_IS_ON) {
495
0
            std::string tmp;
496
0
            for (auto v : _missing_map) {
497
0
                tmp += std::to_string(v).append(", ");
498
0
            }
499
0
            VLOG_TRACE << "Trace missing map of " << this << ':' << tmp;
500
0
        }
501
18
    } else {
502
18
        RETURN_IF_ERROR(_tablet_finder->find_tablets(_state, block, num_rows, _partitions,
503
18
                                                     _tablet_indexes, _skip));
504
18
    }
505
28
    if (has_filtered_rows) {
506
0
        for (int i = 0; i < num_rows; i++) {
507
0
            _skip[i] = _skip[i] || _block_convertor->filter_map()[i];
508
0
        }
509
0
    }
510
28
    RETURN_IF_ERROR(_filter_block(block, row_part_tablet_ids));
511
28
    return Status::OK();
512
28
}
513
514
void VRowDistribution::_reset_row_part_tablet_ids(
515
40.4k
        std::vector<RowPartTabletIds>& row_part_tablet_ids, int64_t rows) {
516
40.4k
    row_part_tablet_ids.resize(_schema->indexes().size());
517
41.5k
    for (auto& row_part_tablet_id : row_part_tablet_ids) {
518
41.5k
        auto& row_ids = row_part_tablet_id.row_ids;
519
41.5k
        auto& partition_ids = row_part_tablet_id.partition_ids;
520
41.5k
        auto& tablet_ids = row_part_tablet_id.tablet_ids;
521
522
41.5k
        row_ids.clear();
523
41.5k
        partition_ids.clear();
524
41.5k
        tablet_ids.clear();
525
        // This is important for performance.
526
41.5k
        row_ids.reserve(rows);
527
41.5k
        partition_ids.reserve(rows);
528
41.5k
        tablet_ids.reserve(rows);
529
41.5k
    }
530
40.4k
}
531
532
Status VRowDistribution::generate_rows_distribution(
533
        Block& input_block, std::shared_ptr<Block>& block,
534
40.4k
        std::vector<RowPartTabletIds>& row_part_tablet_ids, int64_t& rows_stat_val) {
535
40.4k
    auto input_rows = input_block.rows();
536
40.4k
    _reset_row_part_tablet_ids(row_part_tablet_ids, input_rows);
537
538
    // we store the batching block with value of `input_block`. so just do all of these again.
539
40.4k
    bool has_filtered_rows = false;
540
40.4k
    RETURN_IF_ERROR(_block_convertor->validate_and_convert_block(
541
40.4k
            _state, &input_block, block, *_vec_output_expr_ctxs, input_rows, has_filtered_rows));
542
543
    // batching block rows which need new partitions. deal together at finish.
544
40.4k
    if (!_batching_block) [[unlikely]] {
545
32.9k
        std::unique_ptr<Block> tmp_block = input_block.create_same_struct_block(0);
546
32.9k
        _batching_block = MutableBlock::create_unique(std::move(*tmp_block));
547
32.9k
    }
548
549
40.4k
    auto num_rows = block->rows();
550
40.4k
    _reset_find_tablets(num_rows);
551
552
    // if there's projection of partition calc, we need to calc it first.
553
40.4k
    auto [part_ctxs, part_funcs] = _get_partition_function();
554
40.4k
    std::vector<uint16_t> partition_cols_idx;
555
40.4k
    if (_vpartition->is_projection_partition()) {
556
        // calc the start value of missing partition ranges.
557
509
        auto func_size = part_funcs.size();
558
1.13k
        for (int i = 0; i < func_size; ++i) {
559
627
            int result_idx = -1;
560
            // we just calc left range here. leave right to FE to avoid dup calc.
561
627
            RETURN_IF_ERROR(part_funcs[i]->execute(part_ctxs[i].get(), block.get(), &result_idx));
562
563
627
            VLOG_DEBUG << "Partition-calculated block:\n" << block->dump_data(0, 1);
564
627
            DCHECK(result_idx != -1);
565
566
627
            partition_cols_idx.push_back(cast_set<uint16_t>(result_idx));
567
627
        }
568
569
        // change the column to compare to transformed.
570
509
        _vpartition->set_transformed_slots(partition_cols_idx);
571
509
    }
572
573
40.4k
    Status st = Status::OK();
574
40.4k
    if (_vpartition->is_auto_detect_overwrite() && !_deal_batched) {
575
        // when overwrite, no auto create partition allowed.
576
34
        st = _generate_rows_distribution_for_auto_overwrite(input_block, block.get(),
577
34
                                                            partition_cols_idx, has_filtered_rows,
578
34
                                                            row_part_tablet_ids, rows_stat_val);
579
40.4k
    } else if (_vpartition->is_auto_partition() && !_deal_batched) {
580
328
        st = _generate_rows_distribution_for_auto_partition(input_block, block.get(),
581
328
                                                            partition_cols_idx, has_filtered_rows,
582
328
                                                            row_part_tablet_ids, rows_stat_val);
583
40.1k
    } else { // not auto partition
584
40.1k
        st = _generate_rows_distribution_for_non_auto_partition(block.get(), has_filtered_rows,
585
40.1k
                                                                row_part_tablet_ids);
586
40.1k
    }
587
588
40.4k
    return st;
589
40.4k
}
590
591
// reuse vars for find_tablets
592
40.5k
void VRowDistribution::_reset_find_tablets(int64_t rows) {
593
40.5k
    _tablet_finder->filter_bitmap().Reset(rows);
594
40.5k
    _partitions.assign(rows, nullptr);
595
40.5k
    _skip.assign(rows, false);
596
40.5k
    _tablet_indexes.assign(rows, 0);
597
40.5k
}
598
599
} // namespace doris