Coverage Report

Created: 2026-07-26 20:18

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/util/blocking_queue.hpp
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
// This file is copied from
18
// https://github.com/apache/impala/blob/branch-2.9.0/be/src/util/blocking-queue.hpp
19
// and modified by Doris
20
21
#pragma once
22
23
#include <unistd.h>
24
25
#include <atomic>
26
#include <condition_variable>
27
#include <list>
28
#include <mutex>
29
30
#include "common/logging.h"
31
#include "util/stopwatch.hpp"
32
33
#ifdef BE_TEST
34
#include "cpp/sync_point.h"
35
#endif
36
37
namespace doris {
38
// Fixed capacity FIFO queue, where both BlockingGet and BlockingPut operations block
39
// if the queue is empty or full, respectively.
40
template <typename T>
41
class BlockingQueue {
42
public:
43
    BlockingQueue(uint32_t max_elements)
44
67
            : _shutdown(false),
45
67
              _max_elements(max_elements),
46
67
              _total_get_wait_time(0),
47
67
              _total_put_wait_time(0),
48
67
              _get_waiting(0),
49
67
              _put_waiting(0) {}
_ZN5doris13BlockingQueueISt10shared_ptrIN5arrow11RecordBatchEEEC2Ej
Line
Count
Source
44
6
            : _shutdown(false),
45
6
              _max_elements(max_elements),
46
6
              _total_get_wait_time(0),
47
6
              _total_put_wait_time(0),
48
6
              _get_waiting(0),
49
6
              _put_waiting(0) {}
_ZN5doris13BlockingQueueINS_14WorkThreadPoolILb0EE4TaskEEC2Ej
Line
Count
Source
44
60
            : _shutdown(false),
45
60
              _max_elements(max_elements),
46
60
              _total_get_wait_time(0),
47
60
              _total_put_wait_time(0),
48
60
              _get_waiting(0),
49
60
              _put_waiting(0) {}
_ZN5doris13BlockingQueueIPN7RdKafka7MessageEEC2Ej
Line
Count
Source
44
1
            : _shutdown(false),
45
1
              _max_elements(max_elements),
46
1
              _total_get_wait_time(0),
47
1
              _total_put_wait_time(0),
48
1
              _get_waiting(0),
49
1
              _put_waiting(0) {}
Unexecuted instantiation: _ZN5doris13BlockingQueueISt10shared_ptrIN3Aws7Kinesis5Model6RecordEEEC2Ej
50
51
    // Get an element from the queue, waiting indefinitely for one to become available.
52
    // Returns false if we were shut down prior to getting the element, and there
53
    // are no more elements available.
54
280k
    bool blocking_get(T* out) { return controlled_blocking_get(out, MAX_CV_WAIT_TIMEOUT_MS); }
_ZN5doris13BlockingQueueISt10shared_ptrIN5arrow11RecordBatchEEE12blocking_getEPS4_
Line
Count
Source
54
2
    bool blocking_get(T* out) { return controlled_blocking_get(out, MAX_CV_WAIT_TIMEOUT_MS); }
_ZN5doris13BlockingQueueINS_14WorkThreadPoolILb0EE4TaskEE12blocking_getEPS3_
Line
Count
Source
54
280k
    bool blocking_get(T* out) { return controlled_blocking_get(out, MAX_CV_WAIT_TIMEOUT_MS); }
_ZN5doris13BlockingQueueIPN7RdKafka7MessageEE12blocking_getEPS3_
Line
Count
Source
54
1
    bool blocking_get(T* out) { return controlled_blocking_get(out, MAX_CV_WAIT_TIMEOUT_MS); }
Unexecuted instantiation: _ZN5doris13BlockingQueueISt10shared_ptrIN3Aws7Kinesis5Model6RecordEEE12blocking_getEPS6_
55
56
    // Blocking_get and blocking_put may cause deadlock,
57
    // but we still don't find root cause,
58
    // introduce condition variable wait timeout to avoid blocking queue deadlock temporarily.
59
280k
    bool controlled_blocking_get(T* out, int64_t cv_wait_timeout_ms) {
60
280k
        MonotonicStopWatch timer;
61
280k
        timer.start();
62
280k
        std::unique_lock<std::mutex> unique_lock(_lock);
63
#ifdef BE_TEST
64
        TEST_SYNC_POINT("BlockingQueue::controlled_blocking_get::after_lock");
65
#endif
66
563k
        while (!(_shutdown || !_list.empty())) {
67
282k
            ++_get_waiting;
68
#ifdef BE_TEST
69
            TEST_SYNC_POINT("BlockingQueue::controlled_blocking_get::before_wait");
70
#endif
71
282k
            _get_cv.wait_for(unique_lock, std::chrono::milliseconds(cv_wait_timeout_ms));
72
282k
            DCHECK_GT(_get_waiting, 0);
73
282k
            --_get_waiting;
74
282k
        }
75
280k
        _total_get_wait_time += timer.elapsed_time();
76
77
280k
        if (!_list.empty()) {
78
274k
            *out = _list.front();
79
274k
            _list.pop_front();
80
274k
            const bool has_put_waiter = _put_waiting > 0;
81
274k
            unique_lock.unlock();
82
274k
            if (has_put_waiter) {
83
0
                _put_cv.notify_one();
84
0
            }
85
274k
            return true;
86
274k
        } else {
87
5.72k
            assert(_shutdown);
88
2.62k
            return false;
89
5.72k
        }
90
280k
    }
_ZN5doris13BlockingQueueISt10shared_ptrIN5arrow11RecordBatchEEE23controlled_blocking_getEPS4_l
Line
Count
Source
59
2
    bool controlled_blocking_get(T* out, int64_t cv_wait_timeout_ms) {
60
2
        MonotonicStopWatch timer;
61
2
        timer.start();
62
2
        std::unique_lock<std::mutex> unique_lock(_lock);
63
#ifdef BE_TEST
64
        TEST_SYNC_POINT("BlockingQueue::controlled_blocking_get::after_lock");
65
#endif
66
2
        while (!(_shutdown || !_list.empty())) {
67
0
            ++_get_waiting;
68
#ifdef BE_TEST
69
            TEST_SYNC_POINT("BlockingQueue::controlled_blocking_get::before_wait");
70
#endif
71
0
            _get_cv.wait_for(unique_lock, std::chrono::milliseconds(cv_wait_timeout_ms));
72
0
            DCHECK_GT(_get_waiting, 0);
73
0
            --_get_waiting;
74
0
        }
75
2
        _total_get_wait_time += timer.elapsed_time();
76
77
2
        if (!_list.empty()) {
78
2
            *out = _list.front();
79
2
            _list.pop_front();
80
2
            const bool has_put_waiter = _put_waiting > 0;
81
2
            unique_lock.unlock();
82
2
            if (has_put_waiter) {
83
0
                _put_cv.notify_one();
84
0
            }
85
2
            return true;
86
2
        } else {
87
0
            assert(_shutdown);
88
0
            return false;
89
0
        }
90
2
    }
_ZN5doris13BlockingQueueINS_14WorkThreadPoolILb0EE4TaskEE23controlled_blocking_getEPS3_l
Line
Count
Source
59
280k
    bool controlled_blocking_get(T* out, int64_t cv_wait_timeout_ms) {
60
280k
        MonotonicStopWatch timer;
61
280k
        timer.start();
62
280k
        std::unique_lock<std::mutex> unique_lock(_lock);
63
#ifdef BE_TEST
64
        TEST_SYNC_POINT("BlockingQueue::controlled_blocking_get::after_lock");
65
#endif
66
563k
        while (!(_shutdown || !_list.empty())) {
67
282k
            ++_get_waiting;
68
#ifdef BE_TEST
69
            TEST_SYNC_POINT("BlockingQueue::controlled_blocking_get::before_wait");
70
#endif
71
282k
            _get_cv.wait_for(unique_lock, std::chrono::milliseconds(cv_wait_timeout_ms));
72
282k
            DCHECK_GT(_get_waiting, 0);
73
282k
            --_get_waiting;
74
282k
        }
75
280k
        _total_get_wait_time += timer.elapsed_time();
76
77
280k
        if (!_list.empty()) {
78
274k
            *out = _list.front();
79
274k
            _list.pop_front();
80
274k
            const bool has_put_waiter = _put_waiting > 0;
81
274k
            unique_lock.unlock();
82
274k
            if (has_put_waiter) {
83
0
                _put_cv.notify_one();
84
0
            }
85
274k
            return true;
86
274k
        } else {
87
5.72k
            assert(_shutdown);
88
2.62k
            return false;
89
5.72k
        }
90
280k
    }
_ZN5doris13BlockingQueueIPN7RdKafka7MessageEE23controlled_blocking_getEPS3_l
Line
Count
Source
59
2
    bool controlled_blocking_get(T* out, int64_t cv_wait_timeout_ms) {
60
2
        MonotonicStopWatch timer;
61
2
        timer.start();
62
2
        std::unique_lock<std::mutex> unique_lock(_lock);
63
#ifdef BE_TEST
64
        TEST_SYNC_POINT("BlockingQueue::controlled_blocking_get::after_lock");
65
#endif
66
8
        while (!(_shutdown || !_list.empty())) {
67
6
            ++_get_waiting;
68
#ifdef BE_TEST
69
            TEST_SYNC_POINT("BlockingQueue::controlled_blocking_get::before_wait");
70
#endif
71
6
            _get_cv.wait_for(unique_lock, std::chrono::milliseconds(cv_wait_timeout_ms));
72
6
            DCHECK_GT(_get_waiting, 0);
73
6
            --_get_waiting;
74
6
        }
75
2
        _total_get_wait_time += timer.elapsed_time();
76
77
2
        if (!_list.empty()) {
78
0
            *out = _list.front();
79
0
            _list.pop_front();
80
0
            const bool has_put_waiter = _put_waiting > 0;
81
0
            unique_lock.unlock();
82
0
            if (has_put_waiter) {
83
0
                _put_cv.notify_one();
84
0
            }
85
0
            return true;
86
2
        } else {
87
2
            assert(_shutdown);
88
2
            return false;
89
2
        }
90
2
    }
Unexecuted instantiation: _ZN5doris13BlockingQueueISt10shared_ptrIN3Aws7Kinesis5Model6RecordEEE23controlled_blocking_getEPS6_l
91
92
    // Puts an element into the queue, waiting indefinitely until there is space.
93
    // If the queue is shut down, returns false.
94
4
    bool blocking_put(const T& val) { return controlled_blocking_put(val, MAX_CV_WAIT_TIMEOUT_MS); }
_ZN5doris13BlockingQueueISt10shared_ptrIN5arrow11RecordBatchEEE12blocking_putERKS4_
Line
Count
Source
94
4
    bool blocking_put(const T& val) { return controlled_blocking_put(val, MAX_CV_WAIT_TIMEOUT_MS); }
Unexecuted instantiation: _ZN5doris13BlockingQueueINS_14WorkThreadPoolILb0EE4TaskEE12blocking_putERKS3_
95
96
    // Blocking_get and blocking_put may cause deadlock,
97
    // but we still don't find root cause,
98
    // introduce condition variable wait timeout to avoid blocking queue deadlock temporarily.
99
4
    bool controlled_blocking_put(const T& val, int64_t cv_wait_timeout_ms) {
100
4
        MonotonicStopWatch timer;
101
4
        timer.start();
102
4
        std::unique_lock<std::mutex> unique_lock(_lock);
103
4
        while (!(_shutdown || _list.size() < _max_elements)) {
104
0
            ++_put_waiting;
105
#ifdef BE_TEST
106
            TEST_SYNC_POINT("BlockingQueue::controlled_blocking_put::before_wait");
107
#endif
108
0
            _put_cv.wait_for(unique_lock, std::chrono::milliseconds(cv_wait_timeout_ms));
109
0
            DCHECK_GT(_put_waiting, 0);
110
0
            --_put_waiting;
111
0
        }
112
4
        _total_put_wait_time += timer.elapsed_time();
113
114
4
        if (_shutdown) {
115
0
            return false;
116
0
        }
117
118
4
        _list.push_back(val);
119
4
        const bool has_get_waiter = _get_waiting > 0;
120
4
        unique_lock.unlock();
121
4
        if (has_get_waiter) {
122
0
            _get_cv.notify_one();
123
0
        }
124
4
        return true;
125
4
    }
_ZN5doris13BlockingQueueISt10shared_ptrIN5arrow11RecordBatchEEE23controlled_blocking_putERKS4_l
Line
Count
Source
99
4
    bool controlled_blocking_put(const T& val, int64_t cv_wait_timeout_ms) {
100
4
        MonotonicStopWatch timer;
101
4
        timer.start();
102
4
        std::unique_lock<std::mutex> unique_lock(_lock);
103
4
        while (!(_shutdown || _list.size() < _max_elements)) {
104
0
            ++_put_waiting;
105
#ifdef BE_TEST
106
            TEST_SYNC_POINT("BlockingQueue::controlled_blocking_put::before_wait");
107
#endif
108
0
            _put_cv.wait_for(unique_lock, std::chrono::milliseconds(cv_wait_timeout_ms));
109
0
            DCHECK_GT(_put_waiting, 0);
110
0
            --_put_waiting;
111
0
        }
112
4
        _total_put_wait_time += timer.elapsed_time();
113
114
4
        if (_shutdown) {
115
0
            return false;
116
0
        }
117
118
4
        _list.push_back(val);
119
4
        const bool has_get_waiter = _get_waiting > 0;
120
4
        unique_lock.unlock();
121
4
        if (has_get_waiter) {
122
0
            _get_cv.notify_one();
123
0
        }
124
4
        return true;
125
4
    }
Unexecuted instantiation: _ZN5doris13BlockingQueueINS_14WorkThreadPoolILb0EE4TaskEE23controlled_blocking_putERKS3_l
Unexecuted instantiation: _ZN5doris13BlockingQueueIPN7RdKafka7MessageEE23controlled_blocking_putERKS3_l
Unexecuted instantiation: _ZN5doris13BlockingQueueISt10shared_ptrIN3Aws7Kinesis5Model6RecordEEE23controlled_blocking_putERKS6_l
126
127
    // Return false if queue full or has been shutdown.
128
274k
    bool try_put(const T& val) {
129
274k
        MonotonicStopWatch timer;
130
274k
        timer.start();
131
274k
        std::unique_lock<std::mutex> unique_lock(_lock);
132
#ifdef BE_TEST
133
        TEST_SYNC_POINT("BlockingQueue::try_put::after_lock");
134
#endif
135
274k
        _total_put_wait_time += timer.elapsed_time();
136
137
274k
        if (_shutdown || _list.size() >= _max_elements) {
138
0
            return false;
139
0
        }
140
141
274k
        _list.push_back(val);
142
274k
        const bool has_get_waiter = _get_waiting > 0;
143
274k
        unique_lock.unlock();
144
274k
        if (has_get_waiter) {
145
274k
            _get_cv.notify_one();
146
274k
        }
147
274k
        return true;
148
274k
    }
149
150
    // Shut down the queue. Wakes up all threads waiting on BlockingGet or BlockingPut.
151
49
    void shutdown() {
152
49
        {
153
49
            std::lock_guard<std::mutex> guard(_lock);
154
49
            _shutdown = true;
155
49
        }
156
157
49
        _get_cv.notify_all();
158
49
        _put_cv.notify_all();
159
49
    }
_ZN5doris13BlockingQueueISt10shared_ptrIN5arrow11RecordBatchEEE8shutdownEv
Line
Count
Source
151
2
    void shutdown() {
152
2
        {
153
2
            std::lock_guard<std::mutex> guard(_lock);
154
2
            _shutdown = true;
155
2
        }
156
157
2
        _get_cv.notify_all();
158
2
        _put_cv.notify_all();
159
2
    }
_ZN5doris13BlockingQueueINS_14WorkThreadPoolILb0EE4TaskEE8shutdownEv
Line
Count
Source
151
44
    void shutdown() {
152
44
        {
153
44
            std::lock_guard<std::mutex> guard(_lock);
154
44
            _shutdown = true;
155
44
        }
156
157
44
        _get_cv.notify_all();
158
44
        _put_cv.notify_all();
159
44
    }
_ZN5doris13BlockingQueueIPN7RdKafka7MessageEE8shutdownEv
Line
Count
Source
151
3
    void shutdown() {
152
3
        {
153
3
            std::lock_guard<std::mutex> guard(_lock);
154
3
            _shutdown = true;
155
3
        }
156
157
3
        _get_cv.notify_all();
158
3
        _put_cv.notify_all();
159
3
    }
Unexecuted instantiation: _ZN5doris13BlockingQueueISt10shared_ptrIN3Aws7Kinesis5Model6RecordEEE8shutdownEv
160
161
290k
    uint32_t get_size() const {
162
290k
        std::lock_guard<std::mutex> l(_lock);
163
290k
        return static_cast<uint32_t>(_list.size());
164
290k
    }
Unexecuted instantiation: _ZNK5doris13BlockingQueueISt10shared_ptrIN5arrow11RecordBatchEEE8get_sizeEv
_ZNK5doris13BlockingQueueINS_14WorkThreadPoolILb0EE4TaskEE8get_sizeEv
Line
Count
Source
161
290k
    uint32_t get_size() const {
162
290k
        std::lock_guard<std::mutex> l(_lock);
163
290k
        return static_cast<uint32_t>(_list.size());
164
290k
    }
_ZNK5doris13BlockingQueueIPN7RdKafka7MessageEE8get_sizeEv
Line
Count
Source
161
1
    uint32_t get_size() const {
162
1
        std::lock_guard<std::mutex> l(_lock);
163
1
        return static_cast<uint32_t>(_list.size());
164
1
    }
Unexecuted instantiation: _ZNK5doris13BlockingQueueISt10shared_ptrIN3Aws7Kinesis5Model6RecordEEE8get_sizeEv
165
166
8.57k
    uint32_t get_capacity() const { return _max_elements; }
167
168
#ifdef BE_TEST
169
    size_t get_waiting_count_for_test() const {
170
        std::lock_guard<std::mutex> guard(_lock);
171
        return _get_waiting;
172
    }
173
174
    size_t put_waiting_count_for_test() const {
175
        std::lock_guard<std::mutex> guard(_lock);
176
        return _put_waiting;
177
    }
178
#endif
179
180
    // Returns the total amount of time threads have blocked in BlockingGet.
181
8.57k
    uint64_t total_get_wait_time() const { return _total_get_wait_time; }
182
183
    // Returns the total amount of time threads have blocked in BlockingPut.
184
8.57k
    uint64_t total_put_wait_time() const { return _total_put_wait_time; }
185
186
private:
187
    static constexpr int64_t MAX_CV_WAIT_TIMEOUT_MS = 60 * 60 * 1000; // 1 hour
188
    bool _shutdown;
189
    const int _max_elements;
190
    std::condition_variable _get_cv; // 'get' callers wait on this
191
    std::condition_variable _put_cv; // 'put' callers wait on this
192
    // _lock guards access to _shutdown, _get_waiting, _put_waiting, _list, total_get_wait_time, and total_put_wait_time
193
    mutable std::mutex _lock;
194
    std::list<T> _list;
195
    std::atomic<uint64_t> _total_get_wait_time;
196
    std::atomic<uint64_t> _total_put_wait_time;
197
    // Number of threads currently inside the corresponding wait_for() call. The waiter that
198
    // increments a counter is also responsible for decrementing it after every wakeup reason.
199
    // Notifiers only inspect these counters and never consume a waiter's registration.
200
    size_t _get_waiting;
201
    size_t _put_waiting;
202
};
203
} // namespace doris