Coverage Report

Created: 2025-03-29 15:49

/root/doris/be/src/olap/memtable_writer.h
Line
Count
Source (jump to first uncovered line)
1
// Licensed to the Apache Software Foundation (ASF) under one
2
// or more contributor license agreements.  See the NOTICE file
3
// distributed with this work for additional information
4
// regarding copyright ownership.  The ASF licenses this file
5
// to you under the Apache License, Version 2.0 (the
6
// "License"); you may not use this file except in compliance
7
// with the License.  You may obtain a copy of the License at
8
//
9
//   http://www.apache.org/licenses/LICENSE-2.0
10
//
11
// Unless required by applicable law or agreed to in writing,
12
// software distributed under the License is distributed on an
13
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
// KIND, either express or implied.  See the License for the
15
// specific language governing permissions and limitations
16
// under the License.
17
18
#pragma once
19
20
#include <gen_cpp/Types_types.h>
21
#include <gen_cpp/internal_service.pb.h>
22
#include <gen_cpp/types.pb.h>
23
24
#include <atomic>
25
#include <cstdint>
26
#include <memory>
27
#include <mutex>
28
#include <shared_mutex>
29
#include <unordered_set>
30
#include <vector>
31
32
#include "common/status.h"
33
#include "olap/delta_writer_context.h"
34
#include "olap/memtable.h"
35
#include "olap/olap_common.h"
36
#include "olap/partial_update_info.h"
37
#include "olap/rowset/rowset.h"
38
#include "olap/tablet.h"
39
#include "olap/tablet_meta.h"
40
#include "olap/tablet_schema.h"
41
#include "util/spinlock.h"
42
#include "util/uid_util.h"
43
44
namespace doris {
45
46
class FlushToken;
47
class MemTable;
48
class MemTracker;
49
class StorageEngine;
50
class TupleDescriptor;
51
class SlotDescriptor;
52
class OlapTableSchemaParam;
53
class RowsetWriter;
54
struct FlushStatistic;
55
class WorkloadGroup;
56
57
namespace vectorized {
58
class Block;
59
} // namespace vectorized
60
61
enum MemType { WRITE = 1, FLUSH = 2, ALL = 3 };
62
63
// Writer for a particular (load, index, tablet).
64
// This class is NOT thread-safe, external synchronization is required.
65
class MemTableWriter {
66
public:
67
    MemTableWriter(const WriteRequest& req);
68
69
    ~MemTableWriter();
70
71
    Status init(std::shared_ptr<RowsetWriter> rowset_writer, TabletSchemaSPtr tablet_schema,
72
                std::shared_ptr<PartialUpdateInfo> partial_update_info,
73
                std::shared_ptr<WorkloadGroup> wg_sptr, bool unique_key_mow = false);
74
75
    Status write(const vectorized::Block* block, const std::vector<uint32_t>& row_idxs);
76
77
    // flush the last memtable to flush queue, must call it before close_wait()
78
    Status close();
79
    // wait for all memtables to be flushed, update profiles if provided.
80
    // mem_consumption() should be 0 after this function returns.
81
11
    Status close_wait(RuntimeProfile* profile = nullptr) {
82
11
        RETURN_IF_ERROR(_do_close_wait());
83
11
        if (profile != nullptr) {
84
11
            _update_profile(profile);
85
11
        }
86
11
        return Status::OK();
87
11
    }
88
89
    // abandon current memtable and wait for all pending-flushing memtables to be destructed.
90
    // mem_consumption() should be 0 after this function returns.
91
    Status cancel();
92
    Status cancel_with_status(const Status& st);
93
94
    int64_t mem_consumption(MemType mem);
95
    int64_t active_memtable_mem_consumption();
96
97
    // Submit current memtable to flush queue, and return without waiting.
98
    // This is currently for reducing mem consumption of this memtable writer.
99
    Status flush_async();
100
101
    // Wait all memtable in flush queue to be flushed
102
    Status wait_flush();
103
104
22
    int64_t tablet_id() const { return _req.tablet_id; }
105
106
0
    int64_t total_received_rows() const { return _total_received_rows; }
107
108
    const FlushStatistic& get_flush_token_stats();
109
110
    uint64_t flush_running_count() const;
111
112
private:
113
    // push a full memtable to flush executor
114
    Status _flush_memtable_async();
115
116
    void _reset_mem_table();
117
118
    Status _do_close_wait();
119
    void _update_profile(RuntimeProfile* profile);
120
121
    std::atomic<bool> _is_init = false;
122
    bool _is_cancelled = false;
123
    bool _is_closed = false;
124
    Status _cancel_status;
125
    WriteRequest _req;
126
    std::shared_ptr<RowsetWriter> _rowset_writer;
127
    std::unique_ptr<MemTable> _mem_table;
128
    TabletSchemaSPtr _tablet_schema;
129
    bool _unique_key_mow = false;
130
131
    // This variable is accessed from writer thread and token flush thread
132
    // use a shared ptr to avoid use after free problem.
133
    std::shared_ptr<FlushToken> _flush_token;
134
    std::vector<std::shared_ptr<MemTracker>> _mem_table_insert_trackers;
135
    std::vector<std::shared_ptr<MemTracker>> _mem_table_flush_trackers;
136
    SpinLock _mem_table_tracker_lock;
137
    SpinLock _mem_table_ptr_lock;
138
    std::atomic<uint32_t> _mem_table_num = 1;
139
    QueryThreadContext _query_thread_context;
140
141
    std::mutex _lock;
142
143
    // total rows num written by MemTableWriter
144
    std::atomic<int64_t> _total_received_rows = 0;
145
    int64_t _wait_flush_time_ns = 0;
146
    int64_t _close_wait_time_ns = 0;
147
    int64_t _segment_num = 0;
148
149
    MonotonicStopWatch _lock_watch;
150
151
    std::shared_ptr<PartialUpdateInfo> _partial_update_info;
152
};
153
154
} // namespace doris