Coverage Report

Created: 2026-08-07 01:15

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/root/doris/be/src/runtime/runtime_state.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
// This file is copied from
18
// https://github.com/apache/impala/blob/branch-2.9.0/be/src/runtime/runtime-state.h
19
// and modified by Doris
20
21
#pragma once
22
23
#include <gen_cpp/PaloInternalService_types.h>
24
#include <gen_cpp/Types_types.h>
25
#include <gen_cpp/segment_v2.pb.h>
26
#include <stdint.h>
27
28
#include <atomic>
29
#include <cstdint>
30
#include <fstream>
31
#include <functional>
32
#include <memory>
33
#include <mutex>
34
#include <shared_mutex>
35
#include <string>
36
#include <utility>
37
#include <vector>
38
39
#include "agent/be_exec_version_manager.h"
40
#include "cctz/time_zone.h"
41
#include "common/be_mock_util.h"
42
#include "common/compiler_util.h" // IWYU pragma: keep
43
#include "common/config.h"
44
#include "common/factory_creator.h"
45
#include "common/status.h"
46
#include "exec/scan/vector_search_user_params.h"
47
#include "io/fs/s3_file_system.h"
48
#include "runtime/runtime_profile.h"
49
#include "runtime/task_execution_context.h"
50
#include "runtime/workload_group/workload_group.h"
51
#include "util/debug_util.h"
52
#include "util/timezone_utils.h"
53
54
namespace doris {
55
class RuntimeFilter;
56
57
23
inline int32_t get_execution_rpc_timeout_ms(int32_t execution_timeout_sec) {
58
23
    return std::min(config::execution_max_rpc_timeout_sec, execution_timeout_sec) * 1000;
59
23
}
60
61
class PipelineXLocalStateBase;
62
class PipelineXSinkLocalStateBase;
63
class PipelineFragmentContext;
64
class PipelineTask;
65
class Dependency;
66
67
class DescriptorTbl;
68
class ObjectPool;
69
class ExecEnv;
70
class IdFileMap;
71
class RuntimeFilterMgr;
72
class MemTrackerLimiter;
73
class QueryContext;
74
class RuntimeFilterConsumer;
75
class RuntimeFilterProducer;
76
class TaskExecutionContext;
77
78
// A collection of items that are part of the global state of a
79
// query and shared across all execution nodes of that query.
80
class RuntimeState {
81
    ENABLE_FACTORY_CREATOR(RuntimeState);
82
83
public:
84
    RuntimeState(const TPlanFragmentExecParams& fragment_exec_params,
85
                 const TQueryOptions& query_options, const TQueryGlobals& query_globals,
86
                 ExecEnv* exec_env, QueryContext* ctx,
87
                 const std::shared_ptr<MemTrackerLimiter>& query_mem_tracker = nullptr);
88
89
    RuntimeState(const TUniqueId& instance_id, const TUniqueId& query_id, int32_t fragment_id,
90
                 const TQueryOptions& query_options, const TQueryGlobals& query_globals,
91
                 ExecEnv* exec_env, QueryContext* ctx);
92
93
    // Used by pipeline. This runtime state is only used for setup.
94
    RuntimeState(const TUniqueId& query_id, int32_t fragment_id, const TQueryOptions& query_options,
95
                 const TQueryGlobals& query_globals, ExecEnv* exec_env, QueryContext* ctx);
96
97
    // Only used in the materialization phase of delayed materialization,
98
    // when there may be no corresponding QueryContext.
99
    RuntimeState(const TUniqueId& query_id, int32_t fragment_id, const TQueryOptions& query_options,
100
                 const TQueryGlobals& query_globals, ExecEnv* exec_env,
101
                 const std::shared_ptr<MemTrackerLimiter>& query_mem_tracker);
102
103
    // Keep this production-visible because master format_v2 constructs a lightweight state for
104
    // page-cache reads; a BE_TEST-only overload would hide release-build incompatibilities.
105
    RuntimeState(const TQueryOptions& query_options, const TQueryGlobals& query_globals);
106
107
    // RuntimeState for executing expr in fe-support.
108
    RuntimeState(const TQueryGlobals& query_globals);
109
110
    // for job task only
111
    RuntimeState();
112
113
    // Empty d'tor to avoid issues with unique_ptr.
114
    MOCK_DEFINE(virtual) ~RuntimeState();
115
116
    // Set per-query state.
117
    Status init(const TUniqueId& fragment_instance_id, const TQueryOptions& query_options,
118
                const TQueryGlobals& query_globals, ExecEnv* exec_env);
119
120
    // for ut and non-query.
121
85
    void set_exec_env(ExecEnv* exec_env) { _exec_env = exec_env; }
122
123
    // for ut and non-query.
124
    void init_mem_trackers(const std::string& name = "ut", const TUniqueId& id = TUniqueId());
125
126
8.40k
    const TQueryOptions& query_options() const { return _query_options; }
127
8
    int64_t scan_queue_mem_limit() const {
128
8
        return _query_options.__isset.scan_queue_mem_limit ? _query_options.scan_queue_mem_limit
129
8
                                                           : _query_options.mem_limit / 20;
130
8
    }
131
132
48.2k
    bool enable_adjust_conjunct_order_by_cost() const {
133
48.2k
        return _query_options.__isset.enable_adjust_conjunct_order_by_cost &&
134
48.2k
               _query_options.enable_adjust_conjunct_order_by_cost;
135
48.2k
    }
136
137
6
    int32_t max_column_reader_num() const {
138
6
        return _query_options.__isset.max_column_reader_num ? _query_options.max_column_reader_num
139
6
                                                            : 20000;
140
6
    }
141
142
221k
    ObjectPool* obj_pool() const { return _obj_pool.get(); }
143
144
547k
    const DescriptorTbl& desc_tbl() const { return *_desc_tbl; }
145
270k
    void set_desc_tbl(const DescriptorTbl* desc_tbl) { _desc_tbl = desc_tbl; }
146
147
    // Row-count limit for output blocks. Clamp to [1, 65535].
148
    // Adaptive byte budgeting still uses this as the hard row ceiling.
149
10.6k
    MOCK_FUNCTION int batch_size() const {
150
10.6k
        static constexpr int kMax = 65535;
151
10.6k
        auto v = _query_options.batch_size;
152
10.6k
        return std::min(std::max(1, v), kMax);
153
10.6k
    }
154
155
    // Target byte budget per output block (default 8MB when adaptive is enabled).
156
    // The public FE/session contract is [1MB, 512MB]; this accessor still clamps any direct
157
    // thrift or mixed-version out-of-range value into that range. Returns `kMax` when adaptive
158
    // is disabled by BE config so the value is always a legal byte budget; callers that need
159
    // to know whether adaptive batch size is active should test
160
    // `config::enable_adaptive_batch_size` explicitly.
161
87
    MOCK_FUNCTION size_t preferred_block_size_bytes() const {
162
87
        static constexpr int64_t kDefault = 8388608L; // 8MB
163
87
        static constexpr int64_t kMax = 536870912L;   // 512MB
164
87
        static constexpr int64_t kMin = 1048576L;     // 1MB
165
87
        if (!config::enable_adaptive_batch_size) [[unlikely]] {
166
3
            return kMax;
167
3
        }
168
84
        if (_query_options.__isset.preferred_block_size_bytes) [[likely]] {
169
84
            return std::max<int64_t>(
170
84
                    kMin, std::min<int64_t>(_query_options.preferred_block_size_bytes, kMax));
171
84
        }
172
0
        return kDefault;
173
84
    }
174
175
46
    int query_parallel_instance_num() const { return _query_options.parallel_instance; }
176
0
    int max_errors() const { return _query_options.max_errors; }
177
41
    int execution_timeout() const {
178
41
        return _query_options.__isset.execution_timeout ? _query_options.execution_timeout
179
41
                                                        : _query_options.query_timeout;
180
41
    }
181
0
    int max_scanners_concurrency() const {
182
0
        return _query_options.__isset.max_scanners_concurrency
183
0
                       ? _query_options.max_scanners_concurrency
184
0
                       : 0;
185
0
    }
186
6
    int max_file_scanners_concurrency() const {
187
6
        return _query_options.__isset.max_file_scanners_concurrency
188
6
                       ? _query_options.max_file_scanners_concurrency
189
6
                       : max_scanners_concurrency();
190
6
    }
191
192
28
    int min_scanners_concurrency() const {
193
28
        return _query_options.__isset.min_scanners_concurrency
194
28
                       ? _query_options.min_scanners_concurrency
195
28
                       : 1;
196
28
    }
197
198
0
    int min_file_scanners_concurrency() const {
199
0
        return _query_options.__isset.min_file_scanners_concurrency
200
0
                       ? _query_options.min_file_scanners_concurrency
201
0
                       : 1;
202
0
    }
203
204
    // Support extended regex
205
    // like look-around zero-width assertions(`?=`, `?!`, `?<=`, `?<!`)
206
26
    bool enable_extended_regex() const {
207
26
        return _query_options.__isset.enable_extended_regex && _query_options.enable_extended_regex;
208
26
    }
209
210
0
    TQueryType::type query_type() const { return _query_options.query_type; }
211
23
    int64_t timestamp_ms() const { return _timestamp_ms; }
212
14
    int32_t nano_seconds() const { return _nano_seconds; }
213
    // if possible, use timezone_obj() rather than timezone()
214
203
    const std::string& timezone() const { return _timezone; }
215
1.05k
    const cctz::time_zone& timezone_obj() const { return _timezone_obj; }
216
36
    void set_timezone(const std::string& timezone) {
217
36
        _timezone = timezone;
218
36
        TimezoneUtils::find_cctz_time_zone(_timezone, _timezone_obj);
219
36
    }
220
3
    const std::string& lc_time_names() const { return _lc_time_names; }
221
0
    const std::string& user() const { return _user; }
222
655
    const TUniqueId& query_id() const { return _query_id; }
223
164k
    const TUniqueId& fragment_instance_id() const { return _fragment_instance_id; }
224
    // should only be called in pipeline engine
225
74
    int32_t fragment_id() const { return _fragment_id; }
226
86
    ExecEnv* exec_env() { return _exec_env; }
227
    std::shared_ptr<MemTrackerLimiter> query_mem_tracker() const;
228
229
    // Returns runtime state profile
230
6
    RuntimeProfile* runtime_profile() { return &_profile; }
231
0
    RuntimeProfile* load_channel_profile() { return &_load_channel_profile; }
232
233
100
    bool enable_function_pushdown() const {
234
100
        return _query_options.__isset.enable_function_pushdown &&
235
100
               _query_options.enable_function_pushdown;
236
100
    }
237
238
274
    bool check_overflow_for_decimal() const {
239
274
        return _query_options.__isset.check_overflow_for_decimal &&
240
274
               _query_options.check_overflow_for_decimal;
241
274
    }
242
243
1.14k
    bool enable_strict_mode() const {
244
1.14k
        return _query_options.__isset.enable_strict_cast && _query_options.enable_strict_cast;
245
1.14k
    }
246
247
0
    bool enable_insert_strict() const {
248
0
        return _query_options.__isset.enable_insert_strict && _query_options.enable_insert_strict;
249
0
    }
250
251
0
    bool enable_common_expr_pushdown() const {
252
0
        return _query_options.__isset.enable_common_expr_pushdown &&
253
0
               _query_options.enable_common_expr_pushdown;
254
0
    }
255
256
0
    bool enable_common_expr_pushdown_for_inverted_index() const {
257
0
        return enable_common_expr_pushdown() &&
258
0
               _query_options.__isset.enable_common_expr_pushdown_for_inverted_index &&
259
0
               _query_options.enable_common_expr_pushdown_for_inverted_index;
260
0
    };
261
262
0
    bool mysql_row_binary_format() const {
263
0
        return _query_options.__isset.mysql_row_binary_format &&
264
0
               _query_options.mysql_row_binary_format;
265
0
    }
266
267
0
    bool enable_short_circuit_query_access_column_store() const {
268
0
        return _query_options.__isset.enable_short_circuit_query_access_column_store &&
269
0
               _query_options.enable_short_circuit_query_access_column_store;
270
0
    }
271
272
    // Appends error to the _error_log if there is space
273
    bool log_error(const std::string& error);
274
275
    // Returns true if the error log has not reached _max_errors.
276
0
    bool log_has_space() {
277
0
        std::lock_guard<std::mutex> l(_error_log_lock);
278
0
        return _error_log.size() < _query_options.max_errors;
279
0
    }
280
281
    // Append all _error_log[_unreported_error_idx+] to new_errors and set
282
    // _unreported_error_idx to _errors_log.size()
283
    void get_unreported_errors(std::vector<std::string>* new_errors);
284
285
    [[nodiscard]] MOCK_FUNCTION bool is_cancelled() const;
286
    MOCK_FUNCTION Status cancel_reason() const;
287
17
    void cancel(const Status& reason) {
288
17
        if (_exec_status.update(reason)) {
289
            // Create a error status, so that we could print error stack, and
290
            // we could know which path call cancel.
291
17
            LOG(WARNING) << "Task is cancelled, instance: "
292
17
                         << PrintInstanceStandardInfo(_query_id, _fragment_instance_id)
293
17
                         << ", st = " << reason;
294
17
        } else {
295
0
            LOG(WARNING) << "Task is already cancelled, instance: "
296
0
                         << PrintInstanceStandardInfo(_query_id, _fragment_instance_id)
297
0
                         << ", original cancel msg: " << _exec_status.status()
298
0
                         << ", new cancel msg: " << reason;
299
0
        }
300
17
    }
301
302
2
    void set_backend_id(int64_t backend_id) { _backend_id = backend_id; }
303
2
    int64_t backend_id() const { return _backend_id; }
304
305
78
    void set_be_number(int be_number) { _be_number = be_number; }
306
125
    int be_number(void) const { return _be_number; }
307
308
0
    std::vector<std::string>& output_files() { return _output_files; }
309
310
0
    void set_import_label(const std::string& import_label) { _import_label = import_label; }
311
312
0
    const std::vector<std::string>& export_output_files() const { return _export_output_files; }
313
314
0
    void add_export_output_file(const std::string& file) { _export_output_files.push_back(file); }
315
316
0
    void set_db_name(const std::string& db_name) { _db_name = db_name; }
317
318
0
    const std::string& db_name() { return _db_name; }
319
320
0
    void set_wal_id(int64_t wal_id) { _wal_id = wal_id; }
321
322
3
    int64_t wal_id() const { return _wal_id; }
323
324
0
    void set_content_length(size_t content_length) { _content_length = content_length; }
325
326
0
    size_t content_length() const { return _content_length; }
327
328
0
    const std::string& import_label() { return _import_label; }
329
330
0
    const std::string& load_dir() const { return _load_dir; }
331
332
0
    void set_load_job_id(int64_t job_id) { _load_job_id = job_id; }
333
334
2
    int64_t load_job_id() const { return _load_job_id; }
335
336
    std::string get_error_log_file_path();
337
338
1
    std::string get_first_error_msg() const { return _first_error_msg; }
339
340
    // append error msg and error line to file when loading data.
341
    // is_summary is true, means we are going to write the summary line
342
    // If we need to stop the processing, set stop_processing to true
343
    Status append_error_msg_to_file(std::function<std::string()> line,
344
                                    std::function<std::string()> error_msg);
345
346
0
    int64_t num_bytes_load_total() { return _num_bytes_load_total.load(); }
347
348
0
    int64_t num_finished_range() { return _num_finished_scan_range.load(); }
349
350
0
    int64_t num_rows_load_total() { return _num_rows_load_total.load(); }
351
352
0
    int64_t num_rows_load_filtered() { return _num_rows_load_filtered.load(); }
353
354
0
    int64_t num_rows_load_unselected() { return _num_rows_load_unselected.load(); }
355
356
0
    int64_t num_rows_filtered_in_strict_mode_partial_update() {
357
0
        return _num_rows_filtered_in_strict_mode_partial_update;
358
0
    }
359
360
0
    int64_t num_rows_load_success() {
361
0
        return num_rows_load_total() - num_rows_load_filtered() - num_rows_load_unselected();
362
0
    }
363
364
2
    void update_num_rows_load_total(int64_t num_rows) { _num_rows_load_total.fetch_add(num_rows); }
365
366
0
    void set_num_rows_load_total(int64_t num_rows) { _num_rows_load_total.store(num_rows); }
367
368
2
    void update_num_bytes_load_total(int64_t bytes_load) {
369
2
        _num_bytes_load_total.fetch_add(bytes_load);
370
2
    }
371
372
2
    void update_num_finished_scan_range(int64_t finished_range) {
373
2
        _num_finished_scan_range.fetch_add(finished_range);
374
2
    }
375
376
0
    void update_num_rows_load_filtered(int64_t num_rows) {
377
0
        _num_rows_load_filtered.fetch_add(num_rows);
378
0
    }
379
380
0
    void update_num_rows_load_unselected(int64_t num_rows) {
381
0
        _num_rows_load_unselected.fetch_add(num_rows);
382
0
    }
383
384
0
    void set_num_rows_filtered_in_strict_mode_partial_update(int64_t num_rows) {
385
0
        _num_rows_filtered_in_strict_mode_partial_update = num_rows;
386
0
    }
387
388
7
    void set_per_fragment_instance_idx(int idx) { _per_fragment_instance_idx = idx; }
389
390
17
    int per_fragment_instance_idx() const { return _per_fragment_instance_idx; }
391
392
7
    void set_num_per_fragment_instances(int num_instances) {
393
7
        _num_per_fragment_instances = num_instances;
394
7
    }
395
396
2
    int num_per_fragment_instances() const { return _num_per_fragment_instances; }
397
398
7
    void set_load_stream_per_node(int load_stream_per_node) {
399
7
        _load_stream_per_node = load_stream_per_node;
400
7
    }
401
402
2
    int load_stream_per_node() const { return _load_stream_per_node; }
403
404
7
    void set_total_load_streams(int total_load_streams) {
405
7
        _total_load_streams = total_load_streams;
406
7
    }
407
408
2
    int total_load_streams() const { return _total_load_streams; }
409
410
7
    void set_num_local_sink(int num_local_sink) { _num_local_sink = num_local_sink; }
411
412
2
    int num_local_sink() const { return _num_local_sink; }
413
414
0
    bool disable_stream_preaggregations() const {
415
0
        return _query_options.disable_stream_preaggregations;
416
0
    }
417
418
0
    int32_t runtime_filter_wait_time_ms() const {
419
0
        return _query_options.runtime_filter_wait_time_ms;
420
0
    }
421
422
0
    int32_t runtime_filter_max_in_num() const { return _query_options.runtime_filter_max_in_num; }
423
424
806
    int be_exec_version() const {
425
806
        DCHECK(_query_options.__isset.be_exec_version &&
426
806
               BeExecVersionManager::check_be_exec_version(_query_options.be_exec_version));
427
806
        return _query_options.be_exec_version;
428
806
    }
429
2
    bool enable_local_shuffle() const {
430
2
        return _query_options.__isset.enable_local_shuffle && _query_options.enable_local_shuffle;
431
2
    }
432
433
3
    MOCK_FUNCTION bool enable_local_exchange() const {
434
3
        return _query_options.__isset.enable_local_exchange && _query_options.enable_local_exchange;
435
3
    }
436
437
38
    bool trim_tailing_spaces_for_external_table_query() const {
438
38
        return _query_options.trim_tailing_spaces_for_external_table_query;
439
38
    }
440
441
2
    bool return_object_data_as_binary() const {
442
2
        return _query_options.return_object_data_as_binary;
443
2
    }
444
445
1
    bool enable_fuzzy_blockable_task() const {
446
1
        return _query_options.__isset.enable_fuzzy_blockable_task &&
447
1
               _query_options.enable_fuzzy_blockable_task;
448
1
    }
449
450
20
    segment_v2::CompressionTypePB fragement_transmission_compression_type() const {
451
20
        if (_query_options.__isset.fragment_transmission_compression_codec) {
452
0
            if (_query_options.fragment_transmission_compression_codec == "lz4") {
453
0
                return segment_v2::CompressionTypePB::LZ4;
454
0
            } else if (_query_options.fragment_transmission_compression_codec == "snappy") {
455
0
                return segment_v2::CompressionTypePB::SNAPPY;
456
0
            } else {
457
0
                return segment_v2::CompressionTypePB::NO_COMPRESSION;
458
0
            }
459
0
        }
460
20
        return segment_v2::CompressionTypePB::NO_COMPRESSION;
461
20
    }
462
463
0
    bool skip_storage_engine_merge() const {
464
0
        return _query_options.__isset.skip_storage_engine_merge &&
465
0
               _query_options.skip_storage_engine_merge;
466
0
    }
467
468
0
    bool skip_delete_predicate() const {
469
0
        return _query_options.__isset.skip_delete_predicate && _query_options.skip_delete_predicate;
470
0
    }
471
472
11
    bool skip_delete_bitmap() const {
473
11
        return _query_options.__isset.skip_delete_bitmap && _query_options.skip_delete_bitmap;
474
11
    }
475
476
0
    bool skip_missing_version() const {
477
0
        return _query_options.__isset.skip_missing_version && _query_options.skip_missing_version;
478
0
    }
479
480
6
    int64_t data_queue_max_blocks() const {
481
6
        return _query_options.__isset.data_queue_max_blocks ? _query_options.data_queue_max_blocks
482
6
                                                            : 1;
483
6
    }
484
485
    bool enable_page_cache() const;
486
487
0
    bool enable_prefer_cached_rowset() const {
488
0
        return _query_options.__isset.enable_prefer_cached_rowset &&
489
0
               _query_options.enable_prefer_cached_rowset;
490
0
    }
491
492
0
    int64_t query_freshness_tolerance_ms() const {
493
0
        return _query_options.query_freshness_tolerance_ms;
494
0
    }
495
496
0
    bool enable_query_freshness_tolerance() const {
497
0
        return _query_options.__isset.query_freshness_tolerance_ms &&
498
0
               _query_options.query_freshness_tolerance_ms > 0;
499
0
    }
500
501
0
    std::vector<TTabletCommitInfo> tablet_commit_infos() const {
502
0
        std::lock_guard<std::mutex> lock(_tablet_infos_mutex);
503
0
        return _tablet_commit_infos;
504
0
    }
505
506
0
    void add_tablet_commit_infos(std::vector<TTabletCommitInfo>& commit_infos) {
507
0
        std::lock_guard<std::mutex> lock(_tablet_infos_mutex);
508
0
        _tablet_commit_infos.insert(_tablet_commit_infos.end(),
509
0
                                    std::make_move_iterator(commit_infos.begin()),
510
0
                                    std::make_move_iterator(commit_infos.end()));
511
0
    }
512
513
0
    std::vector<TErrorTabletInfo> error_tablet_infos() const {
514
0
        std::lock_guard<std::mutex> lock(_tablet_infos_mutex);
515
0
        return _error_tablet_infos;
516
0
    }
517
518
0
    void add_error_tablet_infos(std::vector<TErrorTabletInfo>& tablet_infos) {
519
0
        std::lock_guard<std::mutex> lock(_tablet_infos_mutex);
520
0
        _error_tablet_infos.insert(_error_tablet_infos.end(),
521
0
                                   std::make_move_iterator(tablet_infos.begin()),
522
0
                                   std::make_move_iterator(tablet_infos.end()));
523
0
    }
524
525
0
    std::vector<THivePartitionUpdate> hive_partition_updates() const {
526
0
        std::lock_guard<std::mutex> lock(_hive_partition_updates_mutex);
527
0
        return _hive_partition_updates;
528
0
    }
529
530
0
    void add_hive_partition_updates(const THivePartitionUpdate& hive_partition_update) {
531
0
        std::lock_guard<std::mutex> lock(_hive_partition_updates_mutex);
532
0
        _hive_partition_updates.emplace_back(hive_partition_update);
533
0
    }
534
535
0
    std::vector<TIcebergCommitData> iceberg_commit_datas() const {
536
0
        std::lock_guard<std::mutex> lock(_iceberg_commit_datas_mutex);
537
0
        return _iceberg_commit_datas;
538
0
    }
539
540
0
    void add_iceberg_commit_datas(const TIcebergCommitData& iceberg_commit_data) {
541
0
        std::lock_guard<std::mutex> lock(_iceberg_commit_datas_mutex);
542
0
        _iceberg_commit_datas.emplace_back(iceberg_commit_data);
543
0
    }
544
545
0
    std::vector<TMCCommitData> mc_commit_datas() const {
546
0
        std::lock_guard<std::mutex> lock(_mc_commit_datas_mutex);
547
0
        return _mc_commit_datas;
548
0
    }
549
550
0
    void add_mc_commit_datas(const TMCCommitData& mc_commit_data) {
551
0
        std::lock_guard<std::mutex> lock(_mc_commit_datas_mutex);
552
0
        _mc_commit_datas.emplace_back(mc_commit_data);
553
0
    }
554
555
0
    std::vector<TPaimonCommitMessage> paimon_commit_messages() const {
556
0
        std::lock_guard<std::mutex> lock(_paimon_commit_messages_mutex);
557
0
        return _paimon_commit_messages;
558
0
    }
559
560
0
    void add_paimon_commit_messages(const std::vector<TPaimonCommitMessage>& commit_messages) {
561
0
        std::lock_guard<std::mutex> lock(_paimon_commit_messages_mutex);
562
0
        _paimon_commit_messages.insert(_paimon_commit_messages.end(), commit_messages.begin(),
563
0
                                       commit_messages.end());
564
0
    }
565
566
    // local runtime filter mgr, the runtime filter do not have remote target or
567
    // not need local merge should regist here. the instance exec finish, the local
568
    // runtime filter mgr can release the memory of local runtime filter
569
68.7k
    RuntimeFilterMgr* local_runtime_filter_mgr() { return _runtime_filter_mgr; }
570
571
    RuntimeFilterMgr* global_runtime_filter_mgr();
572
573
164
    void set_runtime_filter_mgr(RuntimeFilterMgr* runtime_filter_mgr) {
574
164
        _runtime_filter_mgr = runtime_filter_mgr;
575
164
    }
576
577
209k
    QueryContext* get_query_ctx() const { return _query_ctx; }
578
579
    [[nodiscard]] bool low_memory_mode() const;
580
581
    std::weak_ptr<QueryContext> get_query_ctx_weak();
582
    MOCK_FUNCTION WorkloadGroupPtr workload_group();
583
584
0
    void set_query_mem_tracker(const std::shared_ptr<MemTrackerLimiter>& tracker) {
585
0
        _query_mem_tracker = tracker;
586
0
    }
587
588
4.31k
    void set_query_options(const TQueryOptions& query_options) { _query_options = query_options; }
589
590
94
    bool enable_profile() const {
591
94
        return _query_options.__isset.enable_profile && _query_options.enable_profile;
592
94
    }
593
594
0
    bool enable_streaming_agg_hash_join_force_passthrough() const {
595
0
        return _query_options.__isset.enable_streaming_agg_hash_join_force_passthrough &&
596
0
               _query_options.enable_streaming_agg_hash_join_force_passthrough;
597
0
    }
598
599
5
    bool enable_local_exchange_before_agg() const {
600
5
        return _query_options.__isset.enable_local_exchange_before_agg &&
601
5
               _query_options.enable_local_exchange_before_agg;
602
5
    }
603
604
1
    bool enable_local_exchange_before_streaming_agg() const {
605
1
        return _query_options.__isset.enable_local_exchange_before_streaming_agg &&
606
1
               _query_options.enable_local_exchange_before_streaming_agg;
607
1
    }
608
609
0
    bool enable_distinct_streaming_agg_force_passthrough() const {
610
0
        return _query_options.__isset.enable_distinct_streaming_agg_force_passthrough &&
611
0
               _query_options.enable_distinct_streaming_agg_force_passthrough;
612
0
    }
613
614
1
    bool enable_broadcast_join_force_passthrough() const {
615
1
        return _query_options.__isset.enable_broadcast_join_force_passthrough &&
616
1
               _query_options.enable_broadcast_join_force_passthrough;
617
1
    }
618
619
0
    int cte_max_recursion_depth() const {
620
0
        return _query_options.__isset.cte_max_recursion_depth
621
0
                       ? _query_options.cte_max_recursion_depth
622
0
                       : 0;
623
0
    }
624
625
0
    int rpc_verbose_profile_max_instance_count() const {
626
0
        return _query_options.__isset.rpc_verbose_profile_max_instance_count
627
0
                       ? _query_options.rpc_verbose_profile_max_instance_count
628
0
                       : 0;
629
0
    }
630
631
0
    MOCK_FUNCTION bool enable_share_hash_table_for_broadcast_join() const {
632
0
        return _query_options.__isset.enable_share_hash_table_for_broadcast_join &&
633
0
               _query_options.enable_share_hash_table_for_broadcast_join;
634
0
    }
635
636
0
    bool enable_parallel_scan() const {
637
0
        return _query_options.__isset.enable_parallel_scan && _query_options.enable_parallel_scan;
638
0
    }
639
640
20
    bool enable_aggregate_function_null_v2() const {
641
20
        return _query_options.__isset.enable_aggregate_function_null_v2 &&
642
20
               _query_options.enable_aggregate_function_null_v2;
643
20
    }
644
645
2
    bool is_read_csv_empty_line_as_null() const {
646
2
        return _query_options.__isset.read_csv_empty_line_as_null &&
647
2
               _query_options.read_csv_empty_line_as_null;
648
2
    }
649
650
0
    int parallel_scan_max_scanners_count() const {
651
0
        return _query_options.__isset.parallel_scan_max_scanners_count
652
0
                       ? _query_options.parallel_scan_max_scanners_count
653
0
                       : 0;
654
0
    }
655
656
431
    int partition_topn_max_partitions() const {
657
431
        return _query_options.__isset.partition_topn_max_partitions
658
431
                       ? _query_options.partition_topn_max_partitions
659
431
                       : 1024;
660
431
    }
661
662
0
    int partition_topn_per_partition_rows() const {
663
0
        return _query_options.__isset.partition_topn_pre_partition_rows
664
0
                       ? _query_options.partition_topn_pre_partition_rows
665
0
                       : 1000;
666
0
    }
667
668
0
    int64_t parallel_scan_min_rows_per_scanner() const {
669
0
        return _query_options.__isset.parallel_scan_min_rows_per_scanner
670
0
                       ? _query_options.parallel_scan_min_rows_per_scanner
671
0
                       : 0;
672
0
    }
673
674
1
    void set_be_exec_version(int32_t version) noexcept { _query_options.be_exec_version = version; }
675
676
    using LocalState = doris::PipelineXLocalStateBase;
677
    using SinkLocalState = doris::PipelineXSinkLocalStateBase;
678
    // get result can return an error message, and we will only call it during the prepare.
679
    void emplace_local_state(int id, std::unique_ptr<LocalState> state);
680
681
    LocalState* get_local_state(int id);
682
    Result<LocalState*> get_local_state_result(int id);
683
684
    void emplace_sink_local_state(int id, std::unique_ptr<SinkLocalState> state);
685
686
    SinkLocalState* get_sink_local_state();
687
688
    Result<SinkLocalState*> get_sink_local_state_result();
689
690
    void resize_op_id_to_local_state(int operator_size);
691
692
    std::vector<std::shared_ptr<RuntimeProfile>> pipeline_id_to_profile();
693
694
    std::vector<std::shared_ptr<RuntimeProfile>> build_pipeline_profile(std::size_t pipeline_size);
695
696
73.0k
    void set_task_execution_context(std::shared_ptr<TaskExecutionContext> context) {
697
73.0k
        _task_execution_context_inited = true;
698
73.0k
        _task_execution_context = context;
699
73.0k
    }
700
701
38
    bool task_execution_context_inited() const { return _task_execution_context_inited; }
702
703
120
    std::weak_ptr<TaskExecutionContext> get_task_execution_context() {
704
120
        CHECK(_task_execution_context_inited)
705
0
                << "_task_execution_context_inited == false, the ctx is not inited";
706
120
        return _task_execution_context;
707
120
    }
708
709
    Status register_producer_runtime_filter(
710
            const doris::TRuntimeFilterDesc& desc,
711
            std::shared_ptr<RuntimeFilterProducer>* producer_filter);
712
713
    Status register_consumer_runtime_filter(
714
            const doris::TRuntimeFilterDesc& desc, bool need_local_merge, int node_id,
715
            std::shared_ptr<RuntimeFilterConsumer>* consumer_filter);
716
717
    bool is_nereids() const;
718
719
4.54k
    bool enable_spill() const {
720
4.54k
        return (_query_options.__isset.enable_force_spill && _query_options.enable_force_spill) ||
721
4.54k
               (_query_options.__isset.enable_spill && _query_options.enable_spill);
722
4.54k
    }
723
724
0
    bool enable_force_spill() const {
725
0
        return _query_options.__isset.enable_force_spill && _query_options.enable_force_spill;
726
0
    }
727
728
68
    int64_t spill_min_revocable_mem() const {
729
68
        if (_query_options.__isset.min_revocable_mem) {
730
68
            return std::max(_query_options.min_revocable_mem, (int64_t)1 << 20);
731
68
        }
732
0
        return 32 << 20;
733
68
    }
734
735
39
    int spill_aggregation_partition_count() const {
736
39
        if (_query_options.__isset.spill_aggregation_partition_count) {
737
39
            return std::min(std::max(2, _query_options.spill_aggregation_partition_count), 32);
738
39
        }
739
0
        return 8;
740
39
    }
741
742
9
    int spill_hash_join_partition_count() const {
743
9
        if (_query_options.__isset.spill_hash_join_partition_count) {
744
9
            return std::min(std::max(2, _query_options.spill_hash_join_partition_count), 32);
745
9
        }
746
0
        return 8;
747
9
    }
748
749
23
    int spill_repartition_max_depth() const {
750
23
        if (_query_options.__isset.spill_repartition_max_depth) {
751
            // Clamp to a reasonable range: [1, 128]
752
23
            return std::max(1, std::min(_query_options.spill_repartition_max_depth, 128));
753
23
        }
754
0
        return 8;
755
23
    }
756
757
70
    int64_t spill_buffer_size_bytes() const {
758
        // clamp to [1MB, 256MB]
759
70
        constexpr int64_t kMin = 1LL * 1024 * 1024;
760
70
        constexpr int64_t kMax = 256LL * 1024 * 1024;
761
70
        if (_query_options.__isset.spill_buffer_size_bytes) {
762
70
            int64_t v = _query_options.spill_buffer_size_bytes;
763
70
            if (v < kMin) return kMin;
764
70
            if (v > kMax) return kMax;
765
70
            return v;
766
70
        }
767
0
        return 8LL * 1024 * 1024;
768
70
    }
769
770
    // Per-sink memory limits: after spill is triggered, the sink proactively
771
    // spills when its revocable memory exceeds this threshold.
772
    // Clamped to [1MB, 4GB], default 64MB.
773
2
    int64_t spill_join_build_sink_mem_limit_bytes() const {
774
2
        constexpr int64_t kMin = 1LL * 1024 * 1024;
775
2
        constexpr int64_t kMax = 4LL * 1024 * 1024 * 1024;
776
2
        constexpr int64_t kDefault = 64LL * 1024 * 1024;
777
2
        if (_query_options.__isset.spill_join_build_sink_mem_limit_bytes) {
778
2
            int64_t v = _query_options.spill_join_build_sink_mem_limit_bytes;
779
2
            return std::min(std::max(v, kMin), kMax);
780
2
        }
781
0
        return kDefault;
782
2
    }
783
784
16
    int64_t spill_aggregation_sink_mem_limit_bytes() const {
785
16
        constexpr int64_t kMin = 1LL * 1024 * 1024;
786
16
        constexpr int64_t kMax = 4LL * 1024 * 1024 * 1024;
787
16
        constexpr int64_t kDefault = 64LL * 1024 * 1024;
788
16
        if (_query_options.__isset.spill_aggregation_sink_mem_limit_bytes) {
789
16
            int64_t v = _query_options.spill_aggregation_sink_mem_limit_bytes;
790
16
            return std::min(std::max(v, kMin), kMax);
791
16
        }
792
0
        return kDefault;
793
16
    }
794
795
8
    int64_t spill_sort_sink_mem_limit_bytes() const {
796
8
        constexpr int64_t kMin = 1LL * 1024 * 1024;
797
8
        constexpr int64_t kMax = 4LL * 1024 * 1024 * 1024;
798
8
        constexpr int64_t kDefault = 64LL * 1024 * 1024;
799
8
        if (_query_options.__isset.spill_sort_sink_mem_limit_bytes) {
800
8
            int64_t v = _query_options.spill_sort_sink_mem_limit_bytes;
801
8
            return std::min(std::max(v, kMin), kMax);
802
8
        }
803
0
        return kDefault;
804
8
    }
805
806
10
    int64_t spill_sort_merge_mem_limit_bytes() const {
807
10
        constexpr int64_t kMin = 1LL * 1024 * 1024;
808
10
        constexpr int64_t kMax = 4LL * 1024 * 1024 * 1024;
809
10
        constexpr int64_t kDefault = 64LL * 1024 * 1024;
810
10
        if (_query_options.__isset.spill_sort_merge_mem_limit_bytes) {
811
10
            int64_t v = _query_options.spill_sort_merge_mem_limit_bytes;
812
10
            return std::min(std::max(v, kMin), kMax);
813
10
        }
814
0
        return kDefault;
815
10
    }
816
817
0
    int64_t low_memory_mode_buffer_limit() const {
818
0
        if (_query_options.__isset.low_memory_mode_buffer_limit) {
819
0
            return std::max(_query_options.low_memory_mode_buffer_limit, (int64_t)1);
820
0
        }
821
0
        return 32L * 1024 * 1024;
822
0
    }
823
824
0
    int spill_revocable_memory_high_watermark_percent() const {
825
0
        if (_query_options.__isset.revocable_memory_high_watermark_percent) {
826
0
            return _query_options.revocable_memory_high_watermark_percent;
827
0
        }
828
0
        return -1;
829
0
    }
830
831
0
    MOCK_FUNCTION bool enable_shared_exchange_sink_buffer() const {
832
0
        return _query_options.__isset.enable_shared_exchange_sink_buffer &&
833
0
               _query_options.enable_shared_exchange_sink_buffer;
834
0
    }
835
836
2.14M
    size_t minimum_operator_memory_required_bytes() const {
837
2.14M
        if (_query_options.__isset.minimum_operator_memory_required_kb) {
838
2.14M
            return _query_options.minimum_operator_memory_required_kb * 1024;
839
2.14M
        } else {
840
            // refer other database
841
0
            return 4 * 1024 * 1024;
842
0
        }
843
2.14M
    }
844
845
0
    MOCK_FUNCTION bool enable_use_hybrid_sort() const {
846
0
        return _query_options.__isset.enable_use_hybrid_sort &&
847
0
               _query_options.enable_use_hybrid_sort;
848
0
    }
849
850
72.1k
    void set_max_operator_id(int max_operator_id) { _max_operator_id = max_operator_id; }
851
852
21
    int max_operator_id() const { return _max_operator_id; }
853
854
25
    void set_task_id(int id) { _task_id = id; }
855
856
220
    int task_id() const { return _task_id; }
857
858
5
    void set_task_num(int task_num) { _task_num = task_num; }
859
860
1
    int task_num() const { return _task_num; }
861
862
0
    int profile_level() const { return _profile_level; }
863
864
0
    std::shared_ptr<IdFileMap>& get_id_file_map() { return _id_file_map; }
865
866
    void set_id_file_map();
867
15
    VectorSearchUserParams get_vector_search_params() const {
868
15
        VectorSearchUserParams params;
869
15
        params.hnsw_ef_search = _query_options.hnsw_ef_search;
870
15
        params.hnsw_check_relative_distance = _query_options.hnsw_check_relative_distance;
871
15
        params.hnsw_bounded_queue = _query_options.hnsw_bounded_queue;
872
15
        params.ivf_nprobe = _query_options.ivf_nprobe;
873
15
        params.ann_index_candidate_rows_threshold =
874
15
                _query_options.__isset.ann_index_candidate_rows_threshold
875
15
                        ? _query_options.ann_index_candidate_rows_threshold
876
15
                        : 0;
877
15
        params.ann_index_candidate_rows_percent_threshold =
878
15
                _query_options.__isset.ann_index_candidate_rows_percent_threshold
879
15
                        ? _query_options.ann_index_candidate_rows_percent_threshold
880
15
                        : 0.3;
881
15
        return params;
882
15
    }
883
884
119
    bool runtime_filter_wait_infinitely() const {
885
119
        return _query_options.__isset.runtime_filter_wait_infinitely &&
886
119
               _query_options.runtime_filter_wait_infinitely;
887
119
    }
888
889
    const std::set<int>& get_deregister_runtime_filter() const;
890
891
    void merge_register_runtime_filter(const std::set<int>& runtime_filter_ids);
892
893
private:
894
    Status create_error_log_file();
895
896
    static const int DEFAULT_BATCH_SIZE = 4062;
897
898
    std::shared_ptr<MemTrackerLimiter> _query_mem_tracker = nullptr;
899
900
    // Could not find a better way to record if the weak ptr is inited, use a bool to record
901
    // it. In some unit test cases, the runtime state's task ctx is not inited, then the test
902
    // hang, it is very hard to debug.
903
    bool _task_execution_context_inited = false;
904
    // Hold execution context for other threads
905
    std::weak_ptr<TaskExecutionContext> _task_execution_context;
906
907
    // put runtime state before _obj_pool, so that it will be deconstructed after
908
    // _obj_pool. Because some of object in _obj_pool will use profile when deconstructing.
909
    RuntimeProfile _profile;
910
    RuntimeProfile _load_channel_profile;
911
    // Why 2?
912
    // During cluster upgrade, fe will not pass profile_level to be, so we need to set it to 2
913
    // to make sure user can see all profile counters like before.
914
    int _profile_level = 2;
915
916
    const DescriptorTbl* _desc_tbl = nullptr;
917
    std::shared_ptr<ObjectPool> _obj_pool;
918
919
    // owned by PipelineFragmentContext
920
    RuntimeFilterMgr* _runtime_filter_mgr = nullptr;
921
922
    // Lock protecting _error_log and _unreported_error_idx
923
    std::mutex _error_log_lock;
924
925
    // Logs error messages.
926
    std::vector<std::string> _error_log;
927
928
    // _error_log[_unreported_error_idx+] has been not reported to the coordinator.
929
    int _unreported_error_idx;
930
931
    // Username of user that is executing the query to which this RuntimeState belongs.
932
    std::string _user;
933
934
    //Query-global timestamp_ms
935
    int64_t _timestamp_ms;
936
    int32_t _nano_seconds;
937
    std::string _timezone;
938
    cctz::time_zone _timezone_obj;
939
    std::string _lc_time_names;
940
941
    TUniqueId _query_id;
942
    // fragment id for each TPipelineFragmentParams
943
    int32_t _fragment_id;
944
    TUniqueId _fragment_instance_id;
945
    TQueryOptions _query_options;
946
    ExecEnv* _exec_env = nullptr;
947
948
    AtomicStatus _exec_status;
949
950
    int _per_fragment_instance_idx;
951
    int _num_per_fragment_instances = 0;
952
    int _load_stream_per_node = 0;
953
    int _total_load_streams = 0;
954
    int _num_local_sink = 0;
955
956
    // The backend id on which this fragment instance runs
957
    int64_t _backend_id = -1;
958
959
    // used as send id
960
    int _be_number;
961
962
    // put here to collect files??
963
    std::vector<std::string> _output_files;
964
    std::atomic<int64_t> _num_rows_load_total;      // total rows read from source
965
    std::atomic<int64_t> _num_rows_load_filtered;   // unqualified rows
966
    std::atomic<int64_t> _num_rows_load_unselected; // rows filtered by predicates
967
    std::atomic<int64_t> _num_rows_filtered_in_strict_mode_partial_update;
968
    std::atomic<int64_t> _num_print_error_rows;
969
970
    std::atomic<int64_t> _num_bytes_load_total; // total bytes read from source
971
    std::atomic<int64_t> _num_finished_scan_range;
972
973
    std::vector<std::string> _export_output_files;
974
    std::string _import_label;
975
    std::string _db_name;
976
    std::string _load_dir;
977
    int64_t _load_job_id;
978
    int64_t _wal_id = -1;
979
    size_t _content_length = 0;
980
981
    // mini load
982
    std::string _error_log_file_path;
983
    std::unique_ptr<std::ofstream> _error_log_file; // error file path, absolute path
984
    std::string _first_error_msg = "";
985
    mutable std::mutex _tablet_infos_mutex;
986
    std::vector<TTabletCommitInfo> _tablet_commit_infos;
987
    std::vector<TErrorTabletInfo> _error_tablet_infos;
988
    int _max_operator_id = 0;
989
    int _task_id = -1;
990
    int _task_num = 0;
991
992
    mutable std::mutex _hive_partition_updates_mutex;
993
    std::vector<THivePartitionUpdate> _hive_partition_updates;
994
995
    mutable std::mutex _iceberg_commit_datas_mutex;
996
    std::vector<TIcebergCommitData> _iceberg_commit_datas;
997
998
    mutable std::mutex _mc_commit_datas_mutex;
999
    std::vector<TMCCommitData> _mc_commit_datas;
1000
1001
    mutable std::mutex _paimon_commit_messages_mutex;
1002
    std::vector<TPaimonCommitMessage> _paimon_commit_messages;
1003
1004
    std::vector<std::unique_ptr<doris::PipelineXLocalStateBase>> _op_id_to_local_state;
1005
1006
    std::unique_ptr<doris::PipelineXSinkLocalStateBase> _sink_local_state;
1007
1008
    QueryContext* _query_ctx = nullptr;
1009
1010
    // true if max_filter_ratio is 0
1011
    bool _load_zero_tolerance = false;
1012
1013
    // only to lock _pipeline_id_to_profile
1014
    std::shared_mutex _pipeline_profile_lock;
1015
    std::vector<std::shared_ptr<RuntimeProfile>> _pipeline_id_to_profile;
1016
1017
    // prohibit copies
1018
    RuntimeState(const RuntimeState&);
1019
1020
    // save error log to s3
1021
    std::shared_ptr<io::S3FileSystem> _s3_error_fs;
1022
    // error file path on s3, ${bucket}/${prefix}/error_log/${label}_${fragment_instance_id}
1023
    std::string _s3_error_log_file_path;
1024
    std::mutex _s3_error_log_file_lock;
1025
1026
    // used for encoding the global lazy materialize
1027
    std::shared_ptr<IdFileMap> _id_file_map = nullptr;
1028
1029
    std::set<int> _registered_runtime_filter_ids;
1030
};
1031
1032
#define RETURN_IF_CANCELLED(state)               \
1033
1.90k
    do {                                         \
1034
1.90k
        if (UNLIKELY((state)->is_cancelled())) { \
1035
16
            return (state)->cancel_reason();     \
1036
16
        }                                        \
1037
1.90k
    } while (false)
1038
1039
} // namespace doris