Coverage Report

Created: 2026-07-15 18:01

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/exec/scan/scanner.h
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
#pragma once
19
20
#include <stdint.h>
21
22
#include <algorithm>
23
#include <atomic>
24
#include <vector>
25
26
#include "common/status.h"
27
#include "core/block/block.h"
28
#include "runtime/exec_env.h"
29
#include "runtime/runtime_state.h"
30
#include "storage/tablet/tablet.h"
31
#include "util/stopwatch.hpp"
32
33
namespace doris {
34
class RuntimeProfile;
35
class TupleDescriptor;
36
37
class VExprContext;
38
39
class ScanLocalStateBase;
40
} // namespace doris
41
42
namespace doris {
43
44
// Counter for load
45
struct ScannerCounter {
46
40
    ScannerCounter() : num_rows_filtered(0), num_rows_unselected(0) {}
47
48
    int64_t num_rows_filtered;   // unqualified rows (unmatched the dest schema, or no partition)
49
    int64_t num_rows_unselected; // rows filtered by predicates
50
};
51
52
class Scanner {
53
public:
54
    Scanner(RuntimeState* state, ScanLocalStateBase* local_state, int64_t limit,
55
            RuntimeProfile* profile);
56
57
    //only used for FileScanner read one line.
58
    Scanner(RuntimeState* state, RuntimeProfile* profile)
59
18
            : _state(state), _limit(1), _profile(profile), _total_rf_num(0), _has_prepared(false) {
60
18
        DorisMetrics::instance()->scanner_cnt->increment(1);
61
18
    };
62
63
37
    virtual ~Scanner() {
64
37
        SCOPED_SWITCH_THREAD_MEM_TRACKER_LIMITER(_state->query_mem_tracker());
65
37
        _input_block.clear();
66
37
        _conjuncts.clear();
67
37
        _projections.clear();
68
37
        _origin_block.clear();
69
37
        _common_expr_ctxs_push_down.clear();
70
37
        DorisMetrics::instance()->scanner_cnt->increment(-1);
71
37
    }
72
73
    virtual Status init(RuntimeState* state, const VExprContextSPtrs& conjuncts);
74
0
    Status prepare() {
75
0
        SCOPED_RAW_TIMER(&_per_scanner_timer);
76
0
        SCOPED_RAW_TIMER(&_per_scanner_prepare_timer);
77
0
        return _prepare_impl();
78
0
    }
79
80
0
    Status open(RuntimeState* state) {
81
0
        SCOPED_RAW_TIMER(&_per_scanner_timer);
82
0
        SCOPED_RAW_TIMER(&_per_scanner_open_timer);
83
0
        return _open_impl(state);
84
0
    }
85
86
    Status get_block(RuntimeState* state, Block* block, bool* eos);
87
    Status get_block_after_projects(RuntimeState* state, Block* block, bool* eos);
88
89
    virtual Status close(RuntimeState* state);
90
91
    // Try to stop scanner, and all running readers.
92
0
    virtual void try_stop() { _should_stop = true; };
93
94
0
    virtual std::string get_name() { return ""; }
95
96
    // return the readable name of current scan range.
97
    // eg, for file scanner, return the current file path.
98
0
    virtual std::string get_current_scan_range_name() { return "not implemented"; }
99
100
#ifdef BE_TEST
101
    static uint64_t TEST_build_condition_cache_digest(uint64_t seed,
102
                                                      const VExprContextSPtrs& conjuncts);
103
#endif
104
105
protected:
106
    // Rebuild the condition-cache digest from the scanner's current conjunct snapshot. The local
107
    // state's digest is used only as a safety gate: zero means condition cache was disabled during
108
    // scan-node open (for example by TopN or an expression without a reliable digest).
109
    uint64_t _current_condition_cache_digest() const;
110
    static uint64_t _build_condition_cache_digest(uint64_t seed,
111
                                                  const VExprContextSPtrs& conjuncts);
112
113
0
    virtual Status _prepare_impl() {
114
0
        _has_prepared = true;
115
0
        return Status::OK();
116
0
    }
117
118
0
    virtual Status _open_impl(RuntimeState* state) {
119
0
        _block_avg_bytes = state->batch_size() * 8;
120
0
        return Status::OK();
121
0
    }
122
123
    // Subclass should implement this to return data.
124
    virtual Status _get_block_impl(RuntimeState* state, Block* block, bool* eof) = 0;
125
126
2
    Status _merge_padding_block() {
127
2
        if (_padding_block.empty()) {
128
1
            _padding_block.swap(_origin_block);
129
1
        } else if (_origin_block.rows()) {
130
1
            ScopedMutableBlock scoped_mutable_block(&_padding_block);
131
1
            auto& mutable_block = scoped_mutable_block.mutable_block();
132
1
            RETURN_IF_ERROR(mutable_block.merge(_origin_block));
133
1
        }
134
2
        return Status::OK();
135
2
    }
136
137
    // Update the counters before closing this scanner
138
    virtual void _collect_profile_before_close();
139
140
    // Whether rows filtered/unselected by this scanner should be reported to the load
141
    // counters in RuntimeState. Only the scanner reading the load source data should
142
    // report, otherwise rows filtered by query predicates (e.g. in INSERT INTO ... SELECT
143
    // or DELETE FROM ... WHERE) would be mixed into load counters and make
144
    // num_rows_load_success() negative.
145
0
    virtual bool _should_update_load_counters() const { return _is_load; }
146
147
    // Check if scanner is already closed, if not, mark it as closed.
148
    // Returns true if the scanner was successfully marked as closed (first time).
149
    // Returns false if the scanner was already closed.
150
    bool _try_close();
151
152
    // Filter the output block finally.
153
    Status _filter_output_block(Block* block);
154
155
    Status _do_projections(Block* origin_block, Block* output_block);
156
157
private:
158
0
    void _start_scan_cpu_timer() {
159
0
        _cpu_watch.reset();
160
0
        _cpu_watch.start();
161
0
    }
162
163
0
    void _update_wait_worker_timer() { _scanner_wait_worker_timer += _watch.elapsed_time(); }
164
    void _update_scan_cpu_timer();
165
166
public:
167
    // Call start_wait_worker_timer() when submit the scanner to the thread pool.
168
    // And call update_wait_worker_timer() when it is actually being executed.
169
0
    void start_wait_worker_timer() {
170
0
        _watch.reset();
171
0
        _watch.start();
172
0
    }
173
174
0
    void resume() {
175
0
        _update_wait_worker_timer();
176
0
        _start_scan_cpu_timer();
177
0
    }
178
0
    void pause() {
179
0
        _update_scan_cpu_timer();
180
0
        start_wait_worker_timer();
181
0
    }
182
0
    int64_t get_time_cost_ns() const { return _per_scanner_timer; }
183
0
    int64_t get_prepare_time_cost_ns() const { return _per_scanner_prepare_timer; }
184
0
    int64_t get_open_time_cost_ns() const { return _per_scanner_open_timer; }
185
186
0
    int64_t projection_time() const { return _projection_timer; }
187
0
    int64_t get_rows_read() const { return _num_rows_read; }
188
189
0
    bool has_prepared() const { return _has_prepared; }
190
191
    Status try_append_late_arrival_runtime_filter();
192
193
0
    int64_t get_scanner_wait_worker_timer() const { return _scanner_wait_worker_timer; }
194
195
    // Some counters need to be updated realtime, for example, workload group policy need
196
    // scan bytes to cancel the query exceed limit.
197
0
    virtual void update_realtime_counters() {}
198
199
330
    RuntimeState* runtime_state() { return _state; }
200
201
0
    bool is_open() const { return _is_open; }
202
0
    void set_opened() { _is_open = true; }
203
204
0
    virtual doris::TabletStorageType get_storage_type() {
205
0
        return doris::TabletStorageType::STORAGE_TYPE_REMOTE;
206
0
    }
207
208
    // Returns true if this scanner's partition has been pruned by a runtime filter.
209
    // Overridden by OlapScanner to check partition pruning state.
210
0
    virtual bool check_partition_pruned() const { return false; }
211
212
0
    bool need_to_close() const { return _need_to_close; }
213
214
0
    void mark_to_need_to_close() {
215
        // If the scanner is failed during init or open, then not need update counters
216
        // because the query is fail and the counter is useless. And it may core during
217
        // update counters. For example, update counters depend on scanner's tablet, but
218
        // the tablet == null when init failed.
219
0
        if (_is_open) {
220
0
            _collect_profile_before_close();
221
0
        }
222
0
        _need_to_close = true;
223
0
    }
224
225
0
    void set_status_on_failure(const Status& st) { _status = st; }
226
227
0
    int64_t limit() const { return _limit; }
228
229
0
    auto get_block_avg_bytes() const { return _block_avg_bytes; }
230
231
0
    void update_block_avg_bytes(size_t block_avg_bytes) { _block_avg_bytes = block_avg_bytes; }
232
233
protected:
234
    RuntimeState* _state = nullptr;
235
    ScanLocalStateBase* _local_state = nullptr;
236
237
    // Set if scan node has sort limit info
238
    int64_t _limit = -1;
239
240
    RuntimeProfile* _profile = nullptr;
241
242
    const TupleDescriptor* _output_tuple_desc = nullptr;
243
    const RowDescriptor* _output_row_descriptor = nullptr;
244
245
    // If _input_tuple_desc is set, the scanner will read data into
246
    // this _input_block first, then convert to the output block.
247
    Block _input_block;
248
249
    bool _is_open = false;
250
    std::atomic<bool> _is_closed {false};
251
    bool _need_to_close = false;
252
    Status _status;
253
254
    // If _applied_rf_num == _total_rf_num
255
    // means all runtime filters are arrived and applied.
256
    int _applied_rf_num = 0;
257
    int _total_rf_num = 0;
258
    // Cloned from _conjuncts of scan node.
259
    // It includes predicate in SQL and runtime filters.
260
    VExprContextSPtrs _conjuncts;
261
    VExprContextSPtrs _projections;
262
    // Used in common subexpression elimination to compute intermediate results.
263
    std::vector<VExprContextSPtrs> _intermediate_projections;
264
    Block _origin_block;
265
    Block _padding_block;
266
267
    VExprContextSPtrs _common_expr_ctxs_push_down;
268
269
    // num of rows read from scanner
270
    int64_t _num_rows_read = 0;
271
272
    int64_t _num_byte_read = 0;
273
274
    // num of rows return from scanner, after filter block
275
    int64_t _num_rows_return = 0;
276
277
    size_t _block_avg_bytes = 0;
278
279
    // Set true after counter is updated finally
280
    bool _has_updated_counter = false;
281
282
    // watch to count the time wait for scanner thread
283
    MonotonicStopWatch _watch;
284
    // Do not use ScopedTimer. There is no guarantee that, the counter
285
    ThreadCpuStopWatch _cpu_watch;
286
    int64_t _scanner_wait_worker_timer = 0;
287
    int64_t _scan_cpu_timer = 0;
288
289
    bool _is_load = false;
290
291
    bool _has_prepared = false;
292
293
    ScannerCounter _counter;
294
    int64_t _per_scanner_timer = 0;
295
    int64_t _per_scanner_prepare_timer = 0;
296
    int64_t _per_scanner_open_timer = 0;
297
    int64_t _projection_timer = 0;
298
299
    bool _should_stop = false;
300
301
    // Cached pointer to ScanOperator's remaining-limit counter. Null when
302
    // this scanner is on the topn path or the query has no LIMIT.
303
    std::atomic<int64_t>* _shared_scan_limit = nullptr;
304
};
305
306
using ScannerSPtr = std::shared_ptr<Scanner>;
307
308
} // namespace doris