Coverage Report

Created: 2026-08-16 01:35

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/root/doris/be/src/load/memtable/memtable.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 "load/memtable/memtable.h"
19
20
#include <fmt/format.h>
21
#include <gen_cpp/olap_file.pb.h>
22
#include <pdqsort.h>
23
24
#include <algorithm>
25
#include <limits>
26
#include <string>
27
#include <vector>
28
29
#include "bvar/bvar.h"
30
#include "common/config.h"
31
#include "core/column/column.h"
32
#include "exprs/aggregate/aggregate_function_reader.h"
33
#include "exprs/aggregate/aggregate_function_simple_factory.h"
34
#include "load/memtable/memtable_memory_limiter.h"
35
#include "runtime/descriptors.h"
36
#include "runtime/exec_env.h"
37
#include "runtime/runtime_profile.h"
38
#include "runtime/thread_context.h"
39
#include "storage/olap_define.h"
40
#include "storage/tablet/tablet_schema.h"
41
#include "util/debug_points.h"
42
#include "util/stopwatch.hpp"
43
44
namespace doris {
45
#include "common/compile_check_begin.h"
46
47
bvar::Adder<int64_t> g_memtable_cnt("memtable_cnt");
48
bvar::Adder<uint64_t> g_flush_cuz_memtable_full("flush_cuz_memtable_full");
49
50
using namespace ErrorCode;
51
52
MemTable::MemTable(int64_t tablet_id, std::shared_ptr<TabletSchema> tablet_schema,
53
                   const std::vector<SlotDescriptor*>* slot_descs, TupleDescriptor* tuple_desc,
54
                   bool enable_unique_key_mow, PartialUpdateInfo* partial_update_info,
55
                   const std::shared_ptr<ResourceContext>& resource_ctx)
56
16
        : _mem_type(MemType::ACTIVE),
57
16
          _tablet_id(tablet_id),
58
16
          _enable_unique_key_mow(enable_unique_key_mow),
59
16
          _keys_type(tablet_schema->keys_type()),
60
16
          _tablet_schema(tablet_schema),
61
16
          _resource_ctx(resource_ctx),
62
16
          _is_first_insertion(true),
63
16
          _agg_functions(tablet_schema->num_columns()),
64
16
          _offsets_of_aggregate_states(tablet_schema->num_columns()),
65
16
          _total_size_of_aggregate_states(0) {
66
16
    g_memtable_cnt << 1;
67
16
    _mem_tracker = std::make_shared<MemTracker>();
68
16
    SCOPED_SWITCH_THREAD_MEM_TRACKER_LIMITER(
69
16
            _resource_ctx->memory_context()->mem_tracker()->write_tracker());
70
16
    SCOPED_CONSUME_MEM_TRACKER(_mem_tracker);
71
16
    _vec_row_comparator = std::make_shared<RowInBlockComparator>(_tablet_schema);
72
16
    if (partial_update_info != nullptr) {
73
16
        _partial_update_mode = partial_update_info->update_mode();
74
16
        if (_partial_update_mode == UniqueKeyUpdateModePB::UPDATE_FIXED_COLUMNS) {
75
0
            if (partial_update_info->is_schema_contains_auto_inc_column &&
76
0
                !partial_update_info->is_input_columns_contains_auto_inc_column) {
77
0
                _is_partial_update_and_auto_inc = true;
78
0
            }
79
0
        }
80
16
    }
81
16
    _init_columns_offset_by_slot_descs(slot_descs, tuple_desc);
82
    // TODO: Support ZOrderComparator in the future
83
16
    _row_in_blocks = std::make_unique<DorisVector<std::shared_ptr<RowInBlock>>>();
84
16
    _load_mem_limit = MemInfo::mem_limit() * config::load_process_max_memory_limit_percent / 100;
85
16
}
86
87
void MemTable::_init_columns_offset_by_slot_descs(const std::vector<SlotDescriptor*>* slot_descs,
88
16
                                                  const TupleDescriptor* tuple_desc) {
89
92
    for (auto slot_desc : *slot_descs) {
90
92
        const auto& slots = tuple_desc->slots();
91
631
        for (int j = 0; j < slots.size(); ++j) {
92
631
            if (slot_desc->id() == slots[j]->id()) {
93
92
                _column_offset.emplace_back(j);
94
92
                break;
95
92
            }
96
631
        }
97
92
    }
98
16
    if (_is_partial_update_and_auto_inc) {
99
0
        _column_offset.emplace_back(_column_offset.size());
100
0
    }
101
16
    _num_columns = _column_offset.size();
102
16
}
103
104
12
void MemTable::_init_agg_functions(const Block* block) {
105
12
    if (_num_columns > _column_offset.size()) [[unlikely]] {
106
0
        throw doris::Exception(doris::ErrorCode::INTERNAL_ERROR,
107
0
                               "num_columns {} is greater than block columns {}", _num_columns,
108
0
                               _column_offset.size());
109
0
    }
110
42
    for (auto cid = _tablet_schema->num_key_columns(); cid < _num_columns; ++cid) {
111
30
        AggregateFunctionPtr function;
112
30
        if (_keys_type == KeysType::UNIQUE_KEYS && _enable_unique_key_mow) {
113
            // In such table, non-key column's aggregation type is NONE, so we need to construct
114
            // the aggregate function manually.
115
9
            if (_skip_bitmap_col_idx != cid) {
116
9
                function = AggregateFunctionSimpleFactory::instance().get(
117
9
                        "replace_load", {block->get_data_type(cid)}, block->get_data_type(cid),
118
9
                        block->get_data_type(cid)->is_nullable(),
119
9
                        BeExecVersionManager::get_newest_version());
120
9
            } else {
121
0
                function = AggregateFunctionSimpleFactory::instance().get(
122
0
                        "bitmap_intersect", {block->get_data_type(cid)}, block->get_data_type(cid),
123
0
                        false, BeExecVersionManager::get_newest_version());
124
0
            }
125
21
        } else {
126
21
            function = _tablet_schema->column(cid).get_aggregate_function(
127
21
                    AGG_LOAD_SUFFIX, _tablet_schema->column(cid).get_be_exec_version(),
128
21
                    block->get_data_type(cid));
129
21
            if (function == nullptr) {
130
0
                LOG(WARNING) << "column get aggregate function failed, column="
131
0
                             << _tablet_schema->column(cid).name();
132
0
            }
133
21
        }
134
135
30
        DCHECK(function != nullptr);
136
30
        _agg_functions[cid] = function;
137
30
    }
138
139
42
    for (auto cid = _tablet_schema->num_key_columns(); cid < _num_columns; ++cid) {
140
30
        _offsets_of_aggregate_states[cid] = _total_size_of_aggregate_states;
141
30
        _total_size_of_aggregate_states += _agg_functions[cid]->size_of_data();
142
143
        // If not the last aggregate_state, we need pad it so that next aggregate_state will be aligned.
144
30
        if (cid + 1 < _num_columns) {
145
22
            size_t alignment_of_next_state = _agg_functions[cid + 1]->align_of_data();
146
147
            /// Extend total_size to next alignment requirement
148
            /// Add padding by rounding up 'total_size_of_aggregate_states' to be a multiplier of alignment_of_next_state.
149
22
            _total_size_of_aggregate_states =
150
22
                    (_total_size_of_aggregate_states + alignment_of_next_state - 1) /
151
22
                    alignment_of_next_state * alignment_of_next_state;
152
22
        }
153
30
    }
154
12
}
155
156
16
MemTable::~MemTable() {
157
16
    SCOPED_SWITCH_THREAD_MEM_TRACKER_LIMITER(
158
16
            _resource_ctx->memory_context()->mem_tracker()->write_tracker());
159
16
    {
160
16
        SCOPED_CONSUME_MEM_TRACKER(_mem_tracker);
161
16
        g_memtable_cnt << -1;
162
16
        if (_keys_type != KeysType::DUP_KEYS) {
163
35
            for (auto it = _row_in_blocks->begin(); it != _row_in_blocks->end(); it++) {
164
20
                if (!(*it)->has_init_agg()) {
165
20
                    continue;
166
20
                }
167
                // We should release agg_places here, because they are not released when a
168
                // load is canceled.
169
0
                for (size_t i = _tablet_schema->num_key_columns(); i < _num_columns; ++i) {
170
0
                    auto function = _agg_functions[i];
171
0
                    DCHECK(function != nullptr);
172
0
                    function->destroy((*it)->agg_places(i));
173
0
                }
174
0
            }
175
15
        }
176
177
16
        _arena.clear(true);
178
16
        _vec_row_comparator.reset();
179
16
        _row_in_blocks.reset();
180
16
        _agg_functions.clear();
181
16
        _input_mutable_block.clear();
182
16
        _output_mutable_block.clear();
183
16
    }
184
16
    if (_is_flush_success) {
185
        // If the memtable is flush success, then its memtracker's consumption should be 0
186
12
        if (_mem_tracker->consumption() != 0 && config::crash_in_memory_tracker_inaccurate) {
187
0
            LOG(FATAL) << "memtable flush success but cosumption is not 0, it is "
188
0
                       << _mem_tracker->consumption();
189
0
        }
190
12
    }
191
16
}
192
193
6
int RowInBlockComparator::operator()(const RowInBlock* left, const RowInBlock* right) const {
194
6
    return _pblock->compare_at(left->_row_pos, right->_row_pos, _tablet_schema->num_key_columns(),
195
6
                               *_pblock, -1);
196
6
}
197
198
21
Status MemTable::insert(const Block* input_block, const DorisVector<uint32_t>& row_idxs) {
199
21
    SCOPED_SWITCH_THREAD_MEM_TRACKER_LIMITER(
200
21
            _resource_ctx->memory_context()->mem_tracker()->write_tracker());
201
21
    SCOPED_CONSUME_MEM_TRACKER(_mem_tracker);
202
203
21
    if (_is_first_insertion) {
204
13
        _is_first_insertion = false;
205
13
        auto clone_block = input_block->clone_without_columns(&_column_offset);
206
13
        _input_mutable_block = MutableBlock::build_mutable_block(std::move(clone_block));
207
13
        _vec_row_comparator->set_block(&_input_mutable_block);
208
13
        clone_block = input_block->clone_without_columns(&_column_offset);
209
13
        _output_mutable_block = MutableBlock::build_mutable_block(std::move(clone_block));
210
13
        if (_tablet_schema->has_sequence_col()) {
211
7
            if (_partial_update_mode == UniqueKeyUpdateModePB::UPDATE_FIXED_COLUMNS) {
212
                // for unique key fixed partial update, sequence column index in block
213
                // may be different with the index in `_tablet_schema`
214
0
                for (int32_t i = 0; i < clone_block.columns(); i++) {
215
0
                    if (clone_block.get_by_position(i).name == SEQUENCE_COL) {
216
0
                        _seq_col_idx_in_block = i;
217
0
                        break;
218
0
                    }
219
0
                }
220
7
            } else {
221
7
                _seq_col_idx_in_block = _tablet_schema->sequence_col_idx();
222
7
            }
223
7
        }
224
13
        if (_partial_update_mode == UniqueKeyUpdateModePB::UPDATE_FLEXIBLE_COLUMNS &&
225
13
            _tablet_schema->has_skip_bitmap_col()) {
226
            // init of _skip_bitmap_col_idx and _delete_sign_col_idx must be before _init_agg_functions()
227
0
            _skip_bitmap_col_idx = _tablet_schema->skip_bitmap_col_idx();
228
0
            _delete_sign_col_idx = _tablet_schema->delete_sign_idx();
229
0
            _delete_sign_col_unique_id = _tablet_schema->column(_delete_sign_col_idx).unique_id();
230
0
            if (_seq_col_idx_in_block != -1) {
231
0
                _seq_col_unique_id = _tablet_schema->column(_seq_col_idx_in_block).unique_id();
232
0
            }
233
0
        }
234
13
        if (_keys_type != KeysType::DUP_KEYS) {
235
            // there may be additional intermediate columns in input_block
236
            // we only need columns indicated by column offset in the output
237
12
            RETURN_IF_CATCH_EXCEPTION(_init_agg_functions(&clone_block));
238
12
        }
239
13
    }
240
241
21
    auto num_rows = row_idxs.size();
242
21
    size_t cursor_in_mutableblock = _input_mutable_block.rows();
243
21
    RETURN_IF_ERROR(_input_mutable_block.add_rows(input_block, row_idxs.data(),
244
21
                                                  row_idxs.data() + num_rows, &_column_offset));
245
42
    for (int i = 0; i < num_rows; i++) {
246
21
        _row_in_blocks->emplace_back(std::make_shared<RowInBlock>(cursor_in_mutableblock + i));
247
21
    }
248
249
21
    _stat.raw_rows += num_rows;
250
21
    return Status::OK();
251
21
}
252
253
template <bool has_skip_bitmap_col>
254
void MemTable::_aggregate_two_row_in_block(MutableBlock& mutable_block, RowInBlock* src_row,
255
3
                                           RowInBlock* dst_row) {
256
    // for flexible partial update, the caller must guarantees that either src_row and dst_row
257
    // both specify the sequence column, or src_row and dst_row both don't specify the
258
    // sequence column
259
3
    if (_tablet_schema->has_sequence_col() && _seq_col_idx_in_block >= 0) {
260
3
        DCHECK_LT(_seq_col_idx_in_block, mutable_block.columns());
261
3
        auto col_ptr = mutable_block.mutable_columns()[_seq_col_idx_in_block].get();
262
3
        auto res = col_ptr->compare_at(dst_row->_row_pos, src_row->_row_pos, *col_ptr, -1);
263
        // dst sequence column larger than src, don't need to update
264
3
        if (res > 0) {
265
3
            return;
266
3
        }
267
        // need to update the row pos in dst row to the src row pos when has
268
        // sequence column
269
0
        dst_row->_row_pos = src_row->_row_pos;
270
0
    }
271
    // dst is non-sequence row, or dst sequence is smaller
272
0
    if constexpr (!has_skip_bitmap_col) {
273
0
        DCHECK(_skip_bitmap_col_idx == -1);
274
0
        for (size_t cid = _tablet_schema->num_key_columns(); cid < _num_columns; ++cid) {
275
0
            auto* col_ptr = mutable_block.mutable_columns()[cid].get();
276
0
            _agg_functions[cid]->add(dst_row->agg_places(cid),
277
0
                                     const_cast<const doris::IColumn**>(&col_ptr),
278
0
                                     src_row->_row_pos, _arena);
279
0
        }
280
0
    } else {
281
0
        DCHECK(_skip_bitmap_col_idx != -1);
282
0
        DCHECK_LT(_skip_bitmap_col_idx, mutable_block.columns());
283
0
        const BitmapValue& skip_bitmap =
284
0
                assert_cast<ColumnBitmap*, TypeCheckOnRelease::DISABLE>(
285
0
                        mutable_block.mutable_columns()[_skip_bitmap_col_idx].get())
286
0
                        ->get_data()[src_row->_row_pos];
287
0
        for (size_t cid = _tablet_schema->num_key_columns(); cid < _num_columns; ++cid) {
288
0
            const auto& col = _tablet_schema->column(cid);
289
0
            if (cid != _skip_bitmap_col_idx && skip_bitmap.contains(col.unique_id())) {
290
0
                continue;
291
0
            }
292
0
            auto* col_ptr = mutable_block.mutable_columns()[cid].get();
293
0
            _agg_functions[cid]->add(dst_row->agg_places(cid),
294
0
                                     const_cast<const doris::IColumn**>(&col_ptr),
295
0
                                     src_row->_row_pos, _arena);
296
0
        }
297
0
    }
298
0
}
_ZN5doris8MemTable27_aggregate_two_row_in_blockILb0EEEvRNS_12MutableBlockEPNS_10RowInBlockES5_
Line
Count
Source
255
3
                                           RowInBlock* dst_row) {
256
    // for flexible partial update, the caller must guarantees that either src_row and dst_row
257
    // both specify the sequence column, or src_row and dst_row both don't specify the
258
    // sequence column
259
3
    if (_tablet_schema->has_sequence_col() && _seq_col_idx_in_block >= 0) {
260
3
        DCHECK_LT(_seq_col_idx_in_block, mutable_block.columns());
261
3
        auto col_ptr = mutable_block.mutable_columns()[_seq_col_idx_in_block].get();
262
3
        auto res = col_ptr->compare_at(dst_row->_row_pos, src_row->_row_pos, *col_ptr, -1);
263
        // dst sequence column larger than src, don't need to update
264
3
        if (res > 0) {
265
3
            return;
266
3
        }
267
        // need to update the row pos in dst row to the src row pos when has
268
        // sequence column
269
0
        dst_row->_row_pos = src_row->_row_pos;
270
0
    }
271
    // dst is non-sequence row, or dst sequence is smaller
272
0
    if constexpr (!has_skip_bitmap_col) {
273
0
        DCHECK(_skip_bitmap_col_idx == -1);
274
0
        for (size_t cid = _tablet_schema->num_key_columns(); cid < _num_columns; ++cid) {
275
0
            auto* col_ptr = mutable_block.mutable_columns()[cid].get();
276
0
            _agg_functions[cid]->add(dst_row->agg_places(cid),
277
0
                                     const_cast<const doris::IColumn**>(&col_ptr),
278
0
                                     src_row->_row_pos, _arena);
279
0
        }
280
    } else {
281
        DCHECK(_skip_bitmap_col_idx != -1);
282
        DCHECK_LT(_skip_bitmap_col_idx, mutable_block.columns());
283
        const BitmapValue& skip_bitmap =
284
                assert_cast<ColumnBitmap*, TypeCheckOnRelease::DISABLE>(
285
                        mutable_block.mutable_columns()[_skip_bitmap_col_idx].get())
286
                        ->get_data()[src_row->_row_pos];
287
        for (size_t cid = _tablet_schema->num_key_columns(); cid < _num_columns; ++cid) {
288
            const auto& col = _tablet_schema->column(cid);
289
            if (cid != _skip_bitmap_col_idx && skip_bitmap.contains(col.unique_id())) {
290
                continue;
291
            }
292
            auto* col_ptr = mutable_block.mutable_columns()[cid].get();
293
            _agg_functions[cid]->add(dst_row->agg_places(cid),
294
                                     const_cast<const doris::IColumn**>(&col_ptr),
295
                                     src_row->_row_pos, _arena);
296
        }
297
    }
298
0
}
Unexecuted instantiation: _ZN5doris8MemTable27_aggregate_two_row_in_blockILb1EEEvRNS_12MutableBlockEPNS_10RowInBlockES5_
299
9
Status MemTable::_put_into_output(Block& in_block) {
300
9
    SCOPED_RAW_TIMER(&_stat.put_into_output_ns);
301
9
    DorisVector<uint32_t> row_pos_vec;
302
9
    DCHECK(in_block.rows() <= std::numeric_limits<int>::max());
303
9
    row_pos_vec.reserve(in_block.rows());
304
20
    for (int i = 0; i < _row_in_blocks->size(); i++) {
305
11
        row_pos_vec.emplace_back((*_row_in_blocks)[i]->_row_pos);
306
11
    }
307
9
    return _output_mutable_block.add_rows(&in_block, row_pos_vec.data(),
308
9
                                          row_pos_vec.data() + in_block.rows());
309
9
}
310
311
12
size_t MemTable::_sort() {
312
12
    SCOPED_RAW_TIMER(&_stat.sort_ns);
313
12
    _stat.sort_times++;
314
12
    size_t same_keys_num = 0;
315
    // sort new rows
316
12
    Tie tie = Tie(_last_sorted_pos, _row_in_blocks->size());
317
43
    for (size_t i = 0; i < _tablet_schema->num_key_columns(); i++) {
318
31
        auto cmp = [&](RowInBlock* lhs, RowInBlock* rhs) -> int {
319
30
            return _input_mutable_block.compare_one_column(lhs->_row_pos, rhs->_row_pos, i, -1);
320
30
        };
321
31
        _sort_one_column(*_row_in_blocks, tie, cmp);
322
31
    }
323
12
    bool is_dup = (_keys_type == KeysType::DUP_KEYS);
324
    // sort extra round by _row_pos to make the sort stable
325
12
    auto iter = tie.iter();
326
15
    while (iter.next()) {
327
3
        pdqsort(std::next(_row_in_blocks->begin(), iter.left()),
328
3
                std::next(_row_in_blocks->begin(), iter.right()),
329
3
                [&is_dup](const std::shared_ptr<RowInBlock>& lhs,
330
3
                          const std::shared_ptr<RowInBlock>& rhs) -> bool {
331
3
                    return is_dup ? lhs->_row_pos > rhs->_row_pos : lhs->_row_pos < rhs->_row_pos;
332
3
                });
333
3
        same_keys_num += iter.right() - iter.left();
334
3
    }
335
    // merge new rows and old rows
336
12
    _vec_row_comparator->set_block(&_input_mutable_block);
337
12
    auto cmp_func = [this, is_dup, &same_keys_num](const std::shared_ptr<RowInBlock>& l,
338
12
                                                   const std::shared_ptr<RowInBlock>& r) -> bool {
339
0
        auto value = (*(this->_vec_row_comparator))(l.get(), r.get());
340
0
        if (value == 0) {
341
0
            same_keys_num++;
342
0
            return is_dup ? l->_row_pos > r->_row_pos : l->_row_pos < r->_row_pos;
343
0
        } else {
344
0
            return value < 0;
345
0
        }
346
0
    };
347
12
    auto new_row_it = std::next(_row_in_blocks->begin(), _last_sorted_pos);
348
12
    std::inplace_merge(_row_in_blocks->begin(), new_row_it, _row_in_blocks->end(), cmp_func);
349
12
    _last_sorted_pos = _row_in_blocks->size();
350
12
    return same_keys_num;
351
12
}
352
353
1
Status MemTable::_sort_by_cluster_keys() {
354
1
    SCOPED_RAW_TIMER(&_stat.sort_ns);
355
1
    _stat.sort_times++;
356
    // sort all rows
357
1
    Block in_block = _output_mutable_block.to_block();
358
1
    auto clone_block = in_block.clone_without_columns();
359
1
    MutableBlock mutable_block = MutableBlock::build_mutable_block(std::move(in_block));
360
1
    _output_mutable_block = MutableBlock::build_mutable_block(std::move(clone_block));
361
362
1
    DorisVector<std::shared_ptr<RowInBlock>> row_in_blocks;
363
1
    row_in_blocks.reserve(mutable_block.rows());
364
5
    for (size_t i = 0; i < mutable_block.rows(); i++) {
365
4
        row_in_blocks.emplace_back(std::make_shared<RowInBlock>(i));
366
4
    }
367
1
    Tie tie = Tie(0, mutable_block.rows());
368
369
2
    for (auto cid : _tablet_schema->cluster_key_uids()) {
370
2
        auto index = _tablet_schema->field_index(cid);
371
2
        if (index == -1) {
372
0
            return Status::InternalError("could not find cluster key column with unique_id=" +
373
0
                                         std::to_string(cid) + " in tablet schema");
374
0
        }
375
8
        auto cmp = [&](const RowInBlock* lhs, const RowInBlock* rhs) -> int {
376
8
            return mutable_block.compare_one_column(lhs->_row_pos, rhs->_row_pos, index, -1);
377
8
        };
378
2
        _sort_one_column(row_in_blocks, tie, cmp);
379
2
    }
380
381
    // sort extra round by _row_pos to make the sort stable
382
1
    auto iter = tie.iter();
383
1
    while (iter.next()) {
384
0
        pdqsort(std::next(row_in_blocks.begin(), iter.left()),
385
0
                std::next(row_in_blocks.begin(), iter.right()),
386
0
                [](const std::shared_ptr<RowInBlock>& lhs, const std::shared_ptr<RowInBlock>& rhs)
387
0
                        -> bool { return lhs->_row_pos < rhs->_row_pos; });
388
0
    }
389
390
1
    in_block = mutable_block.to_block();
391
1
    SCOPED_RAW_TIMER(&_stat.put_into_output_ns);
392
1
    DorisVector<uint32_t> row_pos_vec;
393
1
    DCHECK(in_block.rows() <= std::numeric_limits<int>::max());
394
1
    row_pos_vec.reserve(in_block.rows());
395
5
    for (int i = 0; i < row_in_blocks.size(); i++) {
396
4
        row_pos_vec.emplace_back(row_in_blocks[i]->_row_pos);
397
4
    }
398
1
    std::vector<int> column_offset;
399
6
    for (int i = 0; i < _column_offset.size(); ++i) {
400
5
        column_offset.emplace_back(i);
401
5
    }
402
1
    return _output_mutable_block.add_rows(&in_block, row_pos_vec.data(),
403
1
                                          row_pos_vec.data() + in_block.rows(), &column_offset);
404
1
}
405
406
void MemTable::_sort_one_column(DorisVector<std::shared_ptr<RowInBlock>>& row_in_blocks, Tie& tie,
407
33
                                std::function<int(RowInBlock*, RowInBlock*)> cmp) {
408
33
    auto iter = tie.iter();
409
43
    while (iter.next()) {
410
10
        pdqsort(std::next(row_in_blocks.begin(), static_cast<int>(iter.left())),
411
10
                std::next(row_in_blocks.begin(), static_cast<int>(iter.right())),
412
21
                [&cmp](auto lhs, auto rhs) -> bool { return cmp(lhs.get(), rhs.get()) < 0; });
413
10
        tie[iter.left()] = 0;
414
27
        for (auto i = iter.left() + 1; i < iter.right(); i++) {
415
17
            tie[i] = (cmp(row_in_blocks[i - 1].get(), row_in_blocks[i].get()) == 0);
416
17
        }
417
10
    }
418
33
}
419
420
template <bool is_final>
421
6
void MemTable::_finalize_one_row(RowInBlock* row, MutableBlock& mutable_block, int row_pos) {
422
    // move key columns
423
18
    for (size_t i = 0; i < _tablet_schema->num_key_columns(); ++i) {
424
12
        _output_mutable_block.get_column_by_position(i)->insert_from(
425
12
                *mutable_block.get_column_by_position(i), row->_row_pos);
426
12
    }
427
6
    if (row->has_init_agg()) {
428
        // get value columns from agg_places
429
12
        for (size_t i = _tablet_schema->num_key_columns(); i < _num_columns; ++i) {
430
9
            auto function = _agg_functions[i];
431
9
            auto* agg_place = row->agg_places(i);
432
9
            auto* col_ptr = _output_mutable_block.get_column_by_position(i).get();
433
9
            function->insert_result_into(agg_place, *col_ptr);
434
435
9
            if constexpr (is_final) {
436
9
                function->destroy(agg_place);
437
9
            } else {
438
0
                function->reset(agg_place);
439
0
            }
440
9
        }
441
442
3
        if constexpr (is_final) {
443
3
            row->remove_init_agg();
444
3
        } else {
445
0
            for (size_t i = _tablet_schema->num_key_columns(); i < _num_columns; ++i) {
446
0
                auto function = _agg_functions[i];
447
0
                auto* agg_place = row->agg_places(i);
448
0
                auto* col_ptr = _output_mutable_block.get_column_by_position(i).get();
449
0
                function->add(agg_place, const_cast<const doris::IColumn**>(&col_ptr), row_pos,
450
0
                              _arena);
451
0
            }
452
0
        }
453
3
    } else {
454
        // move columns for rows do not need agg
455
12
        for (size_t i = _tablet_schema->num_key_columns(); i < _num_columns; ++i) {
456
9
            _output_mutable_block.get_column_by_position(i)->insert_from(
457
9
                    *mutable_block.get_column_by_position(i), row->_row_pos);
458
9
        }
459
3
    }
460
6
    if constexpr (!is_final) {
461
0
        row->_row_pos = row_pos;
462
0
    }
463
6
}
Unexecuted instantiation: _ZN5doris8MemTable17_finalize_one_rowILb0EEEvPNS_10RowInBlockERNS_12MutableBlockEi
_ZN5doris8MemTable17_finalize_one_rowILb1EEEvPNS_10RowInBlockERNS_12MutableBlockEi
Line
Count
Source
421
6
void MemTable::_finalize_one_row(RowInBlock* row, MutableBlock& mutable_block, int row_pos) {
422
    // move key columns
423
18
    for (size_t i = 0; i < _tablet_schema->num_key_columns(); ++i) {
424
12
        _output_mutable_block.get_column_by_position(i)->insert_from(
425
12
                *mutable_block.get_column_by_position(i), row->_row_pos);
426
12
    }
427
6
    if (row->has_init_agg()) {
428
        // get value columns from agg_places
429
12
        for (size_t i = _tablet_schema->num_key_columns(); i < _num_columns; ++i) {
430
9
            auto function = _agg_functions[i];
431
9
            auto* agg_place = row->agg_places(i);
432
9
            auto* col_ptr = _output_mutable_block.get_column_by_position(i).get();
433
9
            function->insert_result_into(agg_place, *col_ptr);
434
435
9
            if constexpr (is_final) {
436
9
                function->destroy(agg_place);
437
            } else {
438
                function->reset(agg_place);
439
            }
440
9
        }
441
442
3
        if constexpr (is_final) {
443
3
            row->remove_init_agg();
444
        } else {
445
            for (size_t i = _tablet_schema->num_key_columns(); i < _num_columns; ++i) {
446
                auto function = _agg_functions[i];
447
                auto* agg_place = row->agg_places(i);
448
                auto* col_ptr = _output_mutable_block.get_column_by_position(i).get();
449
                function->add(agg_place, const_cast<const doris::IColumn**>(&col_ptr), row_pos,
450
                              _arena);
451
            }
452
        }
453
3
    } else {
454
        // move columns for rows do not need agg
455
12
        for (size_t i = _tablet_schema->num_key_columns(); i < _num_columns; ++i) {
456
9
            _output_mutable_block.get_column_by_position(i)->insert_from(
457
9
                    *mutable_block.get_column_by_position(i), row->_row_pos);
458
9
        }
459
3
    }
460
    if constexpr (!is_final) {
461
        row->_row_pos = row_pos;
462
    }
463
6
}
464
465
3
void MemTable::_init_row_for_agg(RowInBlock* row, MutableBlock& mutable_block) {
466
3
    row->init_agg_places(_arena.aligned_alloc(_total_size_of_aggregate_states, 16),
467
3
                         _offsets_of_aggregate_states.data());
468
12
    for (auto cid = _tablet_schema->num_key_columns(); cid < _num_columns; cid++) {
469
9
        auto* col_ptr = mutable_block.mutable_columns()[cid].get();
470
9
        auto* data = row->agg_places(cid);
471
9
        _agg_functions[cid]->create(data);
472
9
        _agg_functions[cid]->add(data, const_cast<const doris::IColumn**>(&col_ptr), row->_row_pos,
473
9
                                 _arena);
474
9
    }
475
3
}
476
0
void MemTable::_clear_row_agg(RowInBlock* row) {
477
0
    if (row->has_init_agg()) {
478
0
        for (size_t i = _tablet_schema->num_key_columns(); i < _num_columns; ++i) {
479
0
            auto function = _agg_functions[i];
480
0
            auto* agg_place = row->agg_places(i);
481
0
            function->destroy(agg_place);
482
0
        }
483
0
        row->remove_init_agg();
484
0
    }
485
0
}
486
487
template <bool is_final, bool has_skip_bitmap_col>
488
3
void MemTable::_aggregate() {
489
3
    SCOPED_RAW_TIMER(&_stat.agg_ns);
490
3
    _stat.agg_times++;
491
3
    Block in_block = _input_mutable_block.to_block();
492
3
    std::unique_ptr<Block> empty_input_block = in_block.create_same_struct_block(0);
493
3
    MutableBlock mutable_block = MutableBlock::build_mutable_block(std::move(in_block));
494
3
    _vec_row_comparator->set_block(&mutable_block);
495
3
    DorisVector<std::shared_ptr<RowInBlock>> temp_row_in_blocks;
496
3
    temp_row_in_blocks.reserve(_last_sorted_pos);
497
    //only init agg if needed
498
499
3
    if constexpr (!has_skip_bitmap_col) {
500
3
        RowInBlock* prev_row = nullptr;
501
3
        int row_pos = -1;
502
9
        for (const auto& cur_row_ptr : *_row_in_blocks) {
503
9
            RowInBlock* cur_row = cur_row_ptr.get();
504
9
            if (!temp_row_in_blocks.empty() && (*_vec_row_comparator)(prev_row, cur_row) == 0) {
505
3
                if (!prev_row->has_init_agg()) {
506
3
                    _init_row_for_agg(prev_row, mutable_block);
507
3
                }
508
3
                _stat.merged_rows++;
509
3
                _aggregate_two_row_in_block<has_skip_bitmap_col>(mutable_block, cur_row, prev_row);
510
6
            } else {
511
6
                prev_row = cur_row;
512
6
                if (!temp_row_in_blocks.empty()) {
513
                    // The rows from the previous batch of _row_in_blocks have been merged into
514
                    // temp_row_in_blocks, now finalize into the mutable block.
515
3
                    _finalize_one_row<is_final>(temp_row_in_blocks.back().get(), mutable_block,
516
3
                                                row_pos);
517
3
                }
518
6
                temp_row_in_blocks.push_back(cur_row_ptr);
519
6
                row_pos++;
520
6
            }
521
9
        }
522
3
        if (!temp_row_in_blocks.empty()) {
523
            // finalize the last low
524
3
            _finalize_one_row<is_final>(temp_row_in_blocks.back().get(), mutable_block, row_pos);
525
3
        }
526
3
    } else {
527
0
        DCHECK(_delete_sign_col_idx != -1);
528
0
        if (_seq_col_idx_in_block == -1) {
529
0
            _aggregate_for_flexible_partial_update_without_seq_col<is_final>(mutable_block,
530
0
                                                                             temp_row_in_blocks);
531
0
        } else {
532
0
            _aggregate_for_flexible_partial_update_with_seq_col<is_final>(mutable_block,
533
0
                                                                          temp_row_in_blocks);
534
0
        }
535
0
    }
536
3
    if constexpr (!is_final) {
537
        // if is not final, we collect the agg results to input_block and then continue to insert
538
0
        _input_mutable_block.swap(_output_mutable_block);
539
        //TODO(weixang):opt here.
540
0
        _output_mutable_block = MutableBlock::build_mutable_block(std::move(*empty_input_block));
541
0
        _output_mutable_block.clear_column_data();
542
0
        *_row_in_blocks = temp_row_in_blocks;
543
0
        _last_sorted_pos = _row_in_blocks->size();
544
0
    }
545
3
}
Unexecuted instantiation: _ZN5doris8MemTable10_aggregateILb0ELb0EEEvv
Unexecuted instantiation: _ZN5doris8MemTable10_aggregateILb0ELb1EEEvv
_ZN5doris8MemTable10_aggregateILb1ELb0EEEvv
Line
Count
Source
488
3
void MemTable::_aggregate() {
489
3
    SCOPED_RAW_TIMER(&_stat.agg_ns);
490
3
    _stat.agg_times++;
491
3
    Block in_block = _input_mutable_block.to_block();
492
3
    std::unique_ptr<Block> empty_input_block = in_block.create_same_struct_block(0);
493
3
    MutableBlock mutable_block = MutableBlock::build_mutable_block(std::move(in_block));
494
3
    _vec_row_comparator->set_block(&mutable_block);
495
3
    DorisVector<std::shared_ptr<RowInBlock>> temp_row_in_blocks;
496
3
    temp_row_in_blocks.reserve(_last_sorted_pos);
497
    //only init agg if needed
498
499
3
    if constexpr (!has_skip_bitmap_col) {
500
3
        RowInBlock* prev_row = nullptr;
501
3
        int row_pos = -1;
502
9
        for (const auto& cur_row_ptr : *_row_in_blocks) {
503
9
            RowInBlock* cur_row = cur_row_ptr.get();
504
9
            if (!temp_row_in_blocks.empty() && (*_vec_row_comparator)(prev_row, cur_row) == 0) {
505
3
                if (!prev_row->has_init_agg()) {
506
3
                    _init_row_for_agg(prev_row, mutable_block);
507
3
                }
508
3
                _stat.merged_rows++;
509
3
                _aggregate_two_row_in_block<has_skip_bitmap_col>(mutable_block, cur_row, prev_row);
510
6
            } else {
511
6
                prev_row = cur_row;
512
6
                if (!temp_row_in_blocks.empty()) {
513
                    // The rows from the previous batch of _row_in_blocks have been merged into
514
                    // temp_row_in_blocks, now finalize into the mutable block.
515
3
                    _finalize_one_row<is_final>(temp_row_in_blocks.back().get(), mutable_block,
516
3
                                                row_pos);
517
3
                }
518
6
                temp_row_in_blocks.push_back(cur_row_ptr);
519
6
                row_pos++;
520
6
            }
521
9
        }
522
3
        if (!temp_row_in_blocks.empty()) {
523
            // finalize the last low
524
3
            _finalize_one_row<is_final>(temp_row_in_blocks.back().get(), mutable_block, row_pos);
525
3
        }
526
    } else {
527
        DCHECK(_delete_sign_col_idx != -1);
528
        if (_seq_col_idx_in_block == -1) {
529
            _aggregate_for_flexible_partial_update_without_seq_col<is_final>(mutable_block,
530
                                                                             temp_row_in_blocks);
531
        } else {
532
            _aggregate_for_flexible_partial_update_with_seq_col<is_final>(mutable_block,
533
                                                                          temp_row_in_blocks);
534
        }
535
    }
536
    if constexpr (!is_final) {
537
        // if is not final, we collect the agg results to input_block and then continue to insert
538
        _input_mutable_block.swap(_output_mutable_block);
539
        //TODO(weixang):opt here.
540
        _output_mutable_block = MutableBlock::build_mutable_block(std::move(*empty_input_block));
541
        _output_mutable_block.clear_column_data();
542
        *_row_in_blocks = temp_row_in_blocks;
543
        _last_sorted_pos = _row_in_blocks->size();
544
    }
545
3
}
Unexecuted instantiation: _ZN5doris8MemTable10_aggregateILb1ELb1EEEvv
546
547
template <bool is_final>
548
void MemTable::_aggregate_for_flexible_partial_update_without_seq_col(
549
0
        MutableBlock& mutable_block, DorisVector<std::shared_ptr<RowInBlock>>& temp_row_in_blocks) {
550
0
    std::shared_ptr<RowInBlock> prev_row {nullptr};
551
0
    int row_pos = -1;
552
0
    auto& skip_bitmaps =
553
0
            assert_cast<ColumnBitmap*>(mutable_block.mutable_columns()[_skip_bitmap_col_idx].get())
554
0
                    ->get_data();
555
0
    auto& delete_signs =
556
0
            assert_cast<ColumnInt8*>(mutable_block.mutable_columns()[_delete_sign_col_idx].get())
557
0
                    ->get_data();
558
0
    std::shared_ptr<RowInBlock> row_with_delete_sign {nullptr};
559
0
    std::shared_ptr<RowInBlock> row_without_delete_sign {nullptr};
560
561
0
    auto finalize_rows = [&]() {
562
0
        if (row_with_delete_sign != nullptr) {
563
0
            temp_row_in_blocks.push_back(row_with_delete_sign);
564
0
            _finalize_one_row<is_final>(row_with_delete_sign.get(), mutable_block, ++row_pos);
565
0
            row_with_delete_sign = nullptr;
566
0
        }
567
0
        if (row_without_delete_sign != nullptr) {
568
0
            temp_row_in_blocks.push_back(row_without_delete_sign);
569
0
            _finalize_one_row<is_final>(row_without_delete_sign.get(), mutable_block, ++row_pos);
570
0
            row_without_delete_sign = nullptr;
571
0
        }
572
        // _arena.clear();
573
0
    };
Unexecuted instantiation: _ZZN5doris8MemTable54_aggregate_for_flexible_partial_update_without_seq_colILb0EEEvRNS_12MutableBlockERSt6vectorISt10shared_ptrINS_10RowInBlockEENS_18CustomStdAllocatorIS7_NS_9AllocatorILb0ELb0ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEENKUlvE_clEv
Unexecuted instantiation: _ZZN5doris8MemTable54_aggregate_for_flexible_partial_update_without_seq_colILb1EEEvRNS_12MutableBlockERSt6vectorISt10shared_ptrINS_10RowInBlockEENS_18CustomStdAllocatorIS7_NS_9AllocatorILb0ELb0ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEENKUlvE_clEv
574
575
0
    auto add_row = [&](std::shared_ptr<RowInBlock> row, bool with_delete_sign) {
576
0
        if (with_delete_sign) {
577
0
            row_with_delete_sign = std::move(row);
578
0
        } else {
579
0
            row_without_delete_sign = std::move(row);
580
0
        }
581
0
    };
Unexecuted instantiation: _ZZN5doris8MemTable54_aggregate_for_flexible_partial_update_without_seq_colILb0EEEvRNS_12MutableBlockERSt6vectorISt10shared_ptrINS_10RowInBlockEENS_18CustomStdAllocatorIS7_NS_9AllocatorILb0ELb0ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEENKUlS7_bE_clES7_b
Unexecuted instantiation: _ZZN5doris8MemTable54_aggregate_for_flexible_partial_update_without_seq_colILb1EEEvRNS_12MutableBlockERSt6vectorISt10shared_ptrINS_10RowInBlockEENS_18CustomStdAllocatorIS7_NS_9AllocatorILb0ELb0ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEENKUlS7_bE_clES7_b
582
0
    for (const auto& cur_row_ptr : *_row_in_blocks) {
583
0
        RowInBlock* cur_row = cur_row_ptr.get();
584
0
        const BitmapValue& skip_bitmap = skip_bitmaps[cur_row->_row_pos];
585
0
        bool cur_row_has_delete_sign = (!skip_bitmap.contains(_delete_sign_col_unique_id) &&
586
0
                                        delete_signs[cur_row->_row_pos] != 0);
587
0
        prev_row =
588
0
                (row_with_delete_sign == nullptr) ? row_without_delete_sign : row_with_delete_sign;
589
        // compare keys, the keys of row_with_delete_sign and row_without_delete_sign is the same,
590
        // choose any of them if it's valid
591
0
        if (prev_row != nullptr && (*_vec_row_comparator)(prev_row.get(), cur_row) == 0) {
592
0
            if (cur_row_has_delete_sign) {
593
0
                if (row_without_delete_sign != nullptr) {
594
                    // if there exits row without delete sign, remove it first
595
0
                    _clear_row_agg(row_without_delete_sign.get());
596
0
                    _stat.merged_rows++;
597
0
                    row_without_delete_sign = nullptr;
598
0
                }
599
                // and then unconditionally replace the previous row
600
0
                prev_row = row_with_delete_sign;
601
0
            } else {
602
0
                prev_row = row_without_delete_sign;
603
0
            }
604
605
0
            if (prev_row == nullptr) {
606
0
                add_row(cur_row_ptr, cur_row_has_delete_sign);
607
0
            } else {
608
0
                if (!prev_row->has_init_agg()) {
609
0
                    _init_row_for_agg(prev_row.get(), mutable_block);
610
0
                }
611
0
                _stat.merged_rows++;
612
0
                _aggregate_two_row_in_block<true>(mutable_block, cur_row, prev_row.get());
613
0
            }
614
0
        } else {
615
0
            finalize_rows();
616
0
            add_row(cur_row_ptr, cur_row_has_delete_sign);
617
0
        }
618
0
    }
619
    // finalize the last lows
620
0
    finalize_rows();
621
0
}
Unexecuted instantiation: _ZN5doris8MemTable54_aggregate_for_flexible_partial_update_without_seq_colILb0EEEvRNS_12MutableBlockERSt6vectorISt10shared_ptrINS_10RowInBlockEENS_18CustomStdAllocatorIS7_NS_9AllocatorILb0ELb0ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEE
Unexecuted instantiation: _ZN5doris8MemTable54_aggregate_for_flexible_partial_update_without_seq_colILb1EEEvRNS_12MutableBlockERSt6vectorISt10shared_ptrINS_10RowInBlockEENS_18CustomStdAllocatorIS7_NS_9AllocatorILb0ELb0ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEE
622
623
template <bool is_final>
624
void MemTable::_aggregate_for_flexible_partial_update_with_seq_col(
625
0
        MutableBlock& mutable_block, DorisVector<std::shared_ptr<RowInBlock>>& temp_row_in_blocks) {
626
    // For flexible partial update, when table has sequence column, we don't do any aggregation
627
    // in memtable. These duplicate rows will be aggregated in VerticalSegmentWriter
628
0
    int row_pos = -1;
629
0
    for (const auto& row_ptr : *_row_in_blocks) {
630
0
        RowInBlock* row = row_ptr.get();
631
0
        temp_row_in_blocks.push_back(row_ptr);
632
0
        _finalize_one_row<is_final>(row, mutable_block, ++row_pos);
633
0
    }
634
0
}
Unexecuted instantiation: _ZN5doris8MemTable51_aggregate_for_flexible_partial_update_with_seq_colILb0EEEvRNS_12MutableBlockERSt6vectorISt10shared_ptrINS_10RowInBlockEENS_18CustomStdAllocatorIS7_NS_9AllocatorILb0ELb0ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEE
Unexecuted instantiation: _ZN5doris8MemTable51_aggregate_for_flexible_partial_update_with_seq_colILb1EEEvRNS_12MutableBlockERSt6vectorISt10shared_ptrINS_10RowInBlockEENS_18CustomStdAllocatorIS7_NS_9AllocatorILb0ELb0ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEE
635
636
0
void MemTable::shrink_memtable_by_agg() {
637
0
    SCOPED_SWITCH_THREAD_MEM_TRACKER_LIMITER(
638
0
            _resource_ctx->memory_context()->mem_tracker()->write_tracker());
639
0
    SCOPED_CONSUME_MEM_TRACKER(_mem_tracker);
640
0
    if (_keys_type == KeysType::DUP_KEYS) {
641
0
        return;
642
0
    }
643
0
    size_t same_keys_num = _sort();
644
0
    if (same_keys_num != 0) {
645
0
        (_skip_bitmap_col_idx == -1) ? _aggregate<false, false>() : _aggregate<false, true>();
646
0
    }
647
0
    _last_agg_pos = memory_usage();
648
0
}
649
650
21
bool MemTable::need_flush() const {
651
21
    DBUG_EXECUTE_IF("MemTable.need_flush", { return true; });
652
21
    auto max_size = _adaptive_write_buffer_size();
653
21
    if (_partial_update_mode == UniqueKeyUpdateModePB::UPDATE_FIXED_COLUMNS) {
654
0
        auto update_columns_size = _num_columns;
655
0
        auto min_buffer_size = config::min_write_buffer_size_for_partial_update;
656
0
        max_size = max_size * update_columns_size / _tablet_schema->num_columns();
657
0
        max_size = max_size > min_buffer_size ? max_size : min_buffer_size;
658
0
    }
659
660
21
    if (memory_usage() >= max_size) {
661
0
        g_flush_cuz_memtable_full << 1;
662
0
        return true;
663
0
    }
664
21
    return false;
665
21
}
666
667
21
int64_t MemTable::_adaptive_write_buffer_size() const {
668
21
    if (!config::enable_adaptive_write_buffer_size) [[unlikely]] {
669
0
        return config::write_buffer_size;
670
0
    }
671
21
    auto* memtable_limiter = ExecEnv::GetInstance()->memtable_memory_limiter();
672
21
    int64_t memtable_mem =
673
21
            (memtable_limiter != nullptr && memtable_limiter->mem_tracker() != nullptr)
674
21
                    ? memtable_limiter->mem_tracker()->consumption()
675
21
                    : 0;
676
21
    int64_t factor = 4;
677
    // Memory usage intervals:
678
    // (80 %, 100 %] → 1× buffer
679
    // (50 %, 80 %]  → 2× buffer
680
    // [0 %, 50 %]   → 4× buffer
681
21
    if (memtable_mem > (_load_mem_limit * 4) / 5) { // > 80 %
682
0
        factor = 1;
683
21
    } else if (memtable_mem > _load_mem_limit / 2) { // > 50 %
684
0
        factor = 2;
685
0
    }
686
21
    return config::write_buffer_size * factor;
687
21
}
688
689
21
bool MemTable::need_agg() const {
690
21
    if (_keys_type == KeysType::AGG_KEYS) {
691
5
        auto max_size = _last_agg_pos + config::write_buffer_size_for_agg;
692
5
        return memory_usage() >= max_size;
693
5
    }
694
16
    return false;
695
21
}
696
697
0
size_t MemTable::get_flush_reserve_memory_size() const {
698
0
    if (_keys_type == KeysType::DUP_KEYS && _tablet_schema->num_key_columns() == 0) {
699
0
        return 0; // no need to reserve
700
0
    }
701
0
    return static_cast<size_t>(static_cast<double>(_input_mutable_block.allocated_bytes()) * 1.2);
702
0
}
703
704
12
Status MemTable::_to_block(std::unique_ptr<Block>* res) {
705
12
    size_t same_keys_num = _sort();
706
12
    if (_keys_type == KeysType::DUP_KEYS || same_keys_num == 0) {
707
9
        if (_keys_type == KeysType::DUP_KEYS && _tablet_schema->num_key_columns() == 0) {
708
0
            _output_mutable_block.swap(_input_mutable_block);
709
9
        } else {
710
9
            Block in_block = _input_mutable_block.to_block();
711
9
            RETURN_IF_ERROR(_put_into_output(in_block));
712
9
        }
713
9
    } else {
714
3
        (_skip_bitmap_col_idx == -1) ? _aggregate<true, false>() : _aggregate<true, true>();
715
3
    }
716
12
    if (_keys_type == KeysType::UNIQUE_KEYS && _enable_unique_key_mow &&
717
12
        !_tablet_schema->cluster_key_uids().empty()) {
718
1
        if (_partial_update_mode != UniqueKeyUpdateModePB::UPSERT) {
719
0
            return Status::InternalError(
720
0
                    "Partial update for mow with cluster keys is not supported");
721
0
        }
722
1
        RETURN_IF_ERROR(_sort_by_cluster_keys());
723
1
    }
724
12
    _input_mutable_block.clear();
725
12
    *res = Block::create_unique(_output_mutable_block.to_block());
726
12
    return Status::OK();
727
12
}
728
729
12
Status MemTable::to_block(std::unique_ptr<Block>* res) {
730
12
    RETURN_IF_ERROR_OR_CATCH_EXCEPTION(_to_block(res));
731
12
    return Status::OK();
732
12
}
733
734
#include "common/compile_check_end.h"
735
} // namespace doris