Coverage Report

Created: 2026-05-18 03:48

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