Coverage Report

Created: 2026-01-07 15:24

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/root/doris/be/src/runtime/query_context.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 "runtime/query_context.h"
19
20
#include <fmt/core.h>
21
#include <gen_cpp/FrontendService_types.h>
22
#include <gen_cpp/RuntimeProfile_types.h>
23
#include <gen_cpp/Types_types.h>
24
#include <glog/logging.h>
25
26
#include <algorithm>
27
#include <exception>
28
#include <memory>
29
#include <mutex>
30
#include <utility>
31
#include <vector>
32
33
#include "common/logging.h"
34
#include "common/status.h"
35
#include "olap/olap_common.h"
36
#include "pipeline/dependency.h"
37
#include "pipeline/exec/rec_cte_scan_operator.h"
38
#include "pipeline/pipeline_fragment_context.h"
39
#include "runtime/exec_env.h"
40
#include "runtime/fragment_mgr.h"
41
#include "runtime/memory/heap_profiler.h"
42
#include "runtime/runtime_query_statistics_mgr.h"
43
#include "runtime/runtime_state.h"
44
#include "runtime/thread_context.h"
45
#include "runtime/workload_group/workload_group_manager.h"
46
#include "runtime/workload_management/query_task_controller.h"
47
#include "runtime_filter/runtime_filter_definitions.h"
48
#include "util/mem_info.h"
49
#include "util/uid_util.h"
50
#include "vec/spill/spill_stream_manager.h"
51
52
namespace doris {
53
54
class DelayReleaseToken : public Runnable {
55
    ENABLE_FACTORY_CREATOR(DelayReleaseToken);
56
57
public:
58
0
    DelayReleaseToken(std::unique_ptr<ThreadPoolToken>&& token) { token_ = std::move(token); }
59
    ~DelayReleaseToken() override = default;
60
0
    void run() override {}
61
    std::unique_ptr<ThreadPoolToken> token_;
62
};
63
64
0
const std::string toString(QuerySource queryType) {
65
0
    switch (queryType) {
66
0
    case QuerySource::INTERNAL_FRONTEND:
67
0
        return "INTERNAL_FRONTEND";
68
0
    case QuerySource::STREAM_LOAD:
69
0
        return "STREAM_LOAD";
70
0
    case QuerySource::GROUP_COMMIT_LOAD:
71
0
        return "EXTERNAL_QUERY";
72
0
    case QuerySource::ROUTINE_LOAD:
73
0
        return "ROUTINE_LOAD";
74
0
    case QuerySource::EXTERNAL_CONNECTOR:
75
0
        return "EXTERNAL_CONNECTOR";
76
0
    default:
77
0
        return "UNKNOWN";
78
0
    }
79
0
}
80
81
std::shared_ptr<QueryContext> QueryContext::create(TUniqueId query_id, ExecEnv* exec_env,
82
                                                   const TQueryOptions& query_options,
83
                                                   TNetworkAddress coord_addr, bool is_nereids,
84
                                                   TNetworkAddress current_connect_fe,
85
96
                                                   QuerySource query_type) {
86
96
    auto ctx = QueryContext::create_shared(query_id, exec_env, query_options, coord_addr,
87
96
                                           is_nereids, current_connect_fe, query_type);
88
96
    ctx->init_query_task_controller();
89
96
    return ctx;
90
96
}
91
92
QueryContext::QueryContext(TUniqueId query_id, ExecEnv* exec_env,
93
                           const TQueryOptions& query_options, TNetworkAddress coord_addr,
94
                           bool is_nereids, TNetworkAddress current_connect_fe,
95
                           QuerySource query_source)
96
121k
        : _timeout_second(-1),
97
121k
          _query_id(std::move(query_id)),
98
121k
          _exec_env(exec_env),
99
121k
          _is_nereids(is_nereids),
100
121k
          _query_options(query_options),
101
121k
          _query_source(query_source) {
102
121k
    _init_resource_context();
103
121k
    SCOPED_SWITCH_THREAD_MEM_TRACKER_LIMITER(query_mem_tracker());
104
121k
    _query_watcher.start();
105
121k
    _execution_dependency =
106
121k
            pipeline::Dependency::create_unique(-1, -1, "ExecutionDependency", false);
107
121k
    _memory_sufficient_dependency =
108
121k
            pipeline::Dependency::create_unique(-1, -1, "MemorySufficientDependency", true);
109
110
121k
    _runtime_filter_mgr = std::make_unique<RuntimeFilterMgr>(true);
111
112
121k
    _timeout_second = query_options.execution_timeout;
113
114
121k
    bool is_query_type_valid = query_options.query_type == TQueryType::SELECT ||
115
121k
                               query_options.query_type == TQueryType::LOAD ||
116
121k
                               query_options.query_type == TQueryType::EXTERNAL;
117
121k
    DCHECK_EQ(is_query_type_valid, true);
118
119
121k
    this->coord_addr = coord_addr;
120
    // current_connect_fe is used for report query statistics
121
121k
    this->current_connect_fe = current_connect_fe;
122
    // external query has no current_connect_fe
123
121k
    if (query_options.query_type != TQueryType::EXTERNAL) {
124
185
        bool is_report_fe_addr_valid =
125
185
                !this->current_connect_fe.hostname.empty() && this->current_connect_fe.port != 0;
126
185
        DCHECK_EQ(is_report_fe_addr_valid, true);
127
185
    }
128
121k
    clock_gettime(CLOCK_MONOTONIC, &this->_query_arrival_timestamp);
129
121k
    DorisMetrics::instance()->query_ctx_cnt->increment(1);
130
121k
}
131
132
121k
void QueryContext::_init_query_mem_tracker() {
133
121k
    bool has_query_mem_limit = _query_options.__isset.mem_limit && (_query_options.mem_limit > 0);
134
121k
    int64_t bytes_limit = has_query_mem_limit ? _query_options.mem_limit : -1;
135
121k
    if (bytes_limit > MemInfo::mem_limit() || bytes_limit == -1) {
136
0
        VLOG_NOTICE << "Query memory limit " << PrettyPrinter::print(bytes_limit, TUnit::BYTES)
137
0
                    << " exceeds process memory limit of "
138
0
                    << PrettyPrinter::print(MemInfo::mem_limit(), TUnit::BYTES)
139
0
                    << " OR is -1. Using process memory limit instead.";
140
0
        bytes_limit = MemInfo::mem_limit();
141
0
    }
142
    // If the query is a pure load task(streamload, routine load, group commit), then it should not use
143
    // memlimit per query to limit their memory usage.
144
121k
    if (is_pure_load_task()) {
145
121k
        bytes_limit = MemInfo::mem_limit();
146
121k
    }
147
121k
    std::shared_ptr<MemTrackerLimiter> query_mem_tracker;
148
121k
    if (_query_options.query_type == TQueryType::SELECT) {
149
182
        query_mem_tracker = MemTrackerLimiter::create_shared(
150
182
                MemTrackerLimiter::Type::QUERY, fmt::format("Query#Id={}", print_id(_query_id)),
151
182
                bytes_limit);
152
121k
    } else if (_query_options.query_type == TQueryType::LOAD) {
153
3
        query_mem_tracker = MemTrackerLimiter::create_shared(
154
3
                MemTrackerLimiter::Type::LOAD, fmt::format("Load#Id={}", print_id(_query_id)),
155
3
                bytes_limit);
156
121k
    } else if (_query_options.query_type == TQueryType::EXTERNAL) { // spark/flink/etc..
157
121k
        query_mem_tracker = MemTrackerLimiter::create_shared(
158
121k
                MemTrackerLimiter::Type::QUERY, fmt::format("External#Id={}", print_id(_query_id)),
159
121k
                bytes_limit);
160
121k
    } else {
161
0
        LOG(FATAL) << "__builtin_unreachable";
162
0
        __builtin_unreachable();
163
0
    }
164
121k
    if (_query_options.__isset.is_report_success && _query_options.is_report_success) {
165
0
        query_mem_tracker->enable_print_log_usage();
166
0
    }
167
168
    // If enable reserve memory, not enable check limit, because reserve memory will check it.
169
    // If reserve enabled, even if the reserved memory size is smaller than the actual requested memory,
170
    // and the query memory consumption is larger than the limit, we do not expect the query to fail
171
    // after `check_limit` returns an error, but to run as long as possible,
172
    // and will enter the paused state and try to spill when the query reserves next time.
173
    // If the workload group or process runs out of memory, it will be forced to cancel.
174
121k
    query_mem_tracker->set_enable_check_limit(!(_query_options.__isset.enable_reserve_memory &&
175
121k
                                                _query_options.enable_reserve_memory));
176
121k
    _resource_ctx->memory_context()->set_mem_tracker(query_mem_tracker);
177
121k
}
178
179
121k
void QueryContext::_init_resource_context() {
180
121k
    _resource_ctx = ResourceContext::create_shared();
181
121k
    _init_query_mem_tracker();
182
121k
}
183
184
121k
void QueryContext::init_query_task_controller() {
185
121k
    _resource_ctx->set_task_controller(QueryTaskController::create(shared_from_this()));
186
121k
    _resource_ctx->task_controller()->set_task_id(_query_id);
187
121k
    _resource_ctx->task_controller()->set_fe_addr(current_connect_fe);
188
121k
    _resource_ctx->task_controller()->set_query_type(_query_options.query_type);
189
#ifndef BE_TEST
190
    _exec_env->runtime_query_statistics_mgr()->register_resource_context(print_id(_query_id),
191
                                                                         _resource_ctx);
192
#endif
193
121k
}
194
195
121k
QueryContext::~QueryContext() {
196
121k
    SCOPED_SWITCH_THREAD_MEM_TRACKER_LIMITER(query_mem_tracker());
197
    // query mem tracker consumption is equal to 0, it means that after QueryContext is created,
198
    // it is found that query already exists in _query_ctx_map, and query mem tracker is not used.
199
    // query mem tracker consumption is not equal to 0 after use, because there is memory consumed
200
    // on query mem tracker, released on other trackers.
201
121k
    std::string mem_tracker_msg;
202
121k
    if (query_mem_tracker()->peak_consumption() != 0) {
203
26
        mem_tracker_msg = fmt::format(
204
26
                "deregister query/load memory tracker, queryId={}, Limit={}, CurrUsed={}, "
205
26
                "PeakUsed={}",
206
26
                print_id(_query_id), PrettyPrinter::print_bytes(query_mem_tracker()->limit()),
207
26
                PrettyPrinter::print_bytes(query_mem_tracker()->consumption()),
208
26
                PrettyPrinter::print_bytes(query_mem_tracker()->peak_consumption()));
209
26
    }
210
121k
    [[maybe_unused]] uint64_t group_id = 0;
211
121k
    if (workload_group()) {
212
16
        group_id = workload_group()->id(); // before remove
213
16
    }
214
215
121k
    _resource_ctx->task_controller()->finish();
216
217
121k
    if (enable_profile()) {
218
0
        _report_query_profile();
219
0
    }
220
221
#ifndef BE_TEST
222
    if (ExecEnv::GetInstance()->pipeline_tracer_context()->enabled()) [[unlikely]] {
223
        try {
224
            ExecEnv::GetInstance()->pipeline_tracer_context()->end_query(_query_id, group_id);
225
        } catch (std::exception& e) {
226
            LOG(WARNING) << "Dump trace log failed bacause " << e.what();
227
        }
228
    }
229
#endif
230
121k
    _runtime_filter_mgr.reset();
231
121k
    _execution_dependency.reset();
232
121k
    _runtime_predicates.clear();
233
121k
    file_scan_range_params_map.clear();
234
121k
    obj_pool.clear();
235
121k
    _merge_controller_handler.reset();
236
237
121k
    DorisMetrics::instance()->query_ctx_cnt->increment(-1);
238
    // fragment_mgr is nullptr in unittest
239
121k
    if (ExecEnv::GetInstance()->fragment_mgr()) {
240
0
        ExecEnv::GetInstance()->fragment_mgr()->remove_query_context(this->_query_id);
241
0
    }
242
    // the only one msg shows query's end. any other msg should append to it if need.
243
121k
    LOG_INFO("Query {} deconstructed, mem_tracker: {}", print_id(this->_query_id), mem_tracker_msg);
244
121k
}
245
246
17
void QueryContext::set_ready_to_execute(Status reason) {
247
17
    set_execution_dependency_ready();
248
17
    _exec_status.update(reason);
249
17
}
250
251
0
void QueryContext::set_ready_to_execute_only() {
252
0
    set_execution_dependency_ready();
253
0
}
254
255
17
void QueryContext::set_execution_dependency_ready() {
256
17
    _execution_dependency->set_ready();
257
17
}
258
259
18
void QueryContext::set_memory_sufficient(bool sufficient) {
260
18
    if (sufficient) {
261
8
        {
262
8
            _memory_sufficient_dependency->set_ready();
263
8
            _resource_ctx->task_controller()->reset_paused_reason();
264
8
        }
265
10
    } else {
266
10
        _memory_sufficient_dependency->block();
267
10
        _resource_ctx->task_controller()->add_paused_count();
268
10
    }
269
18
}
270
271
17
void QueryContext::cancel(Status new_status, int fragment_id) {
272
17
    if (!_exec_status.update(new_status)) {
273
0
        return;
274
0
    }
275
    // Tasks should be always runnable.
276
17
    _execution_dependency->set_always_ready();
277
17
    _memory_sufficient_dependency->set_always_ready();
278
17
    if ((new_status.is<ErrorCode::MEM_LIMIT_EXCEEDED>() ||
279
17
         new_status.is<ErrorCode::MEM_ALLOC_FAILED>()) &&
280
17
        _query_options.__isset.dump_heap_profile_when_mem_limit_exceeded &&
281
17
        _query_options.dump_heap_profile_when_mem_limit_exceeded) {
282
        // if query is cancelled because of query mem limit exceeded, dump heap profile
283
        // at the time of cancellation can get the most accurate memory usage for problem analysis
284
0
        auto wg = workload_group();
285
0
        auto log_str = fmt::format(
286
0
                "Query {} canceled because of memory limit exceeded, dumping memory "
287
0
                "detail profiles. wg: {}. {}",
288
0
                print_id(_query_id), wg ? wg->debug_string() : "null",
289
0
                doris::ProcessProfile::instance()->memory_profile()->process_memory_detail_str());
290
0
        LOG_LONG_STRING(INFO, log_str);
291
0
        std::string dot = HeapProfiler::instance()->dump_heap_profile_to_dot();
292
0
        if (!dot.empty()) {
293
0
            dot += "\n-------------------------------------------------------\n";
294
0
            dot += "Copy the text after `digraph` in the above output to "
295
0
                   "http://www.webgraphviz.com to generate a dot graph.\n"
296
0
                   "after start heap profiler, if there is no operation, will print `No nodes "
297
0
                   "to "
298
0
                   "print`."
299
0
                   "If there are many errors: `addr2line: Dwarf Error`,"
300
0
                   "or other FAQ, reference doc: "
301
0
                   "https://doris.apache.org/community/developer-guide/debug-tool/#4-qa\n";
302
0
            auto nest_log_str =
303
0
                    fmt::format("Query {}, dump heap profile to dot: {}", print_id(_query_id), dot);
304
0
            LOG_LONG_STRING(INFO, nest_log_str);
305
0
        }
306
0
    }
307
308
17
    set_ready_to_execute(new_status);
309
17
    cancel_all_pipeline_context(new_status, fragment_id);
310
17
}
311
312
0
void QueryContext::set_load_error_url(std::string error_url) {
313
0
    std::lock_guard<std::mutex> lock(_error_url_lock);
314
0
    _load_error_url = error_url;
315
0
}
316
317
0
std::string QueryContext::get_load_error_url() {
318
0
    std::lock_guard<std::mutex> lock(_error_url_lock);
319
0
    return _load_error_url;
320
0
}
321
322
0
void QueryContext::set_first_error_msg(std::string error_msg) {
323
0
    std::lock_guard<std::mutex> lock(_error_url_lock);
324
0
    _first_error_msg = error_msg;
325
0
}
326
327
0
std::string QueryContext::get_first_error_msg() {
328
0
    std::lock_guard<std::mutex> lock(_error_url_lock);
329
0
    return _first_error_msg;
330
0
}
331
332
17
void QueryContext::cancel_all_pipeline_context(const Status& reason, int fragment_id) {
333
17
    std::vector<std::weak_ptr<pipeline::PipelineFragmentContext>> ctx_to_cancel;
334
17
    {
335
17
        std::lock_guard<std::mutex> lock(_pipeline_map_write_lock);
336
17
        for (auto& [f_id, f_context] : _fragment_id_to_pipeline_ctx) {
337
0
            if (fragment_id == f_id) {
338
0
                continue;
339
0
            }
340
0
            ctx_to_cancel.push_back(f_context);
341
0
        }
342
17
    }
343
17
    for (auto& f_context : ctx_to_cancel) {
344
0
        if (auto pipeline_ctx = f_context.lock()) {
345
0
            pipeline_ctx->cancel(reason);
346
0
        }
347
0
    }
348
17
}
349
350
0
std::string QueryContext::print_all_pipeline_context() {
351
0
    std::vector<std::weak_ptr<pipeline::PipelineFragmentContext>> ctx_to_print;
352
0
    fmt::memory_buffer debug_string_buffer;
353
0
    size_t i = 0;
354
0
    {
355
0
        fmt::format_to(debug_string_buffer, "{} pipeline fragment contexts in query {}. \n",
356
0
                       _fragment_id_to_pipeline_ctx.size(), print_id(_query_id));
357
358
0
        {
359
0
            std::lock_guard<std::mutex> lock(_pipeline_map_write_lock);
360
0
            for (auto& [f_id, f_context] : _fragment_id_to_pipeline_ctx) {
361
0
                ctx_to_print.push_back(f_context);
362
0
            }
363
0
        }
364
0
        for (auto& f_context : ctx_to_print) {
365
0
            if (auto pipeline_ctx = f_context.lock()) {
366
0
                auto elapsed = pipeline_ctx->elapsed_time() / 1000000000.0;
367
0
                fmt::format_to(debug_string_buffer,
368
0
                               "No.{} (elapse_second={}s, fragment_id={}) : {}\n", i, elapsed,
369
0
                               pipeline_ctx->get_fragment_id(), pipeline_ctx->debug_string());
370
0
                i++;
371
0
            }
372
0
        }
373
0
    }
374
0
    return fmt::to_string(debug_string_buffer);
375
0
}
376
377
void QueryContext::set_pipeline_context(
378
0
        const int fragment_id, std::shared_ptr<pipeline::PipelineFragmentContext> pip_ctx) {
379
0
    std::lock_guard<std::mutex> lock(_pipeline_map_write_lock);
380
0
    _fragment_id_to_pipeline_ctx.insert({fragment_id, pip_ctx});
381
0
}
382
383
28
doris::pipeline::TaskScheduler* QueryContext::get_pipe_exec_scheduler() {
384
28
    if (!_task_scheduler) {
385
0
        throw Exception(Status::InternalError("task_scheduler is null"));
386
0
    }
387
28
    return _task_scheduler;
388
28
}
389
390
16
Status QueryContext::set_workload_group(WorkloadGroupPtr& wg) {
391
16
    _resource_ctx->set_workload_group(wg);
392
    // Should add query first, the workload group will not be deleted,
393
    // then visit workload group's resource
394
    // see task_group_manager::delete_workload_group_by_ids
395
16
    RETURN_IF_ERROR(workload_group()->add_resource_ctx(_query_id, _resource_ctx));
396
397
16
    workload_group()->get_query_scheduler(&_task_scheduler, &_scan_task_scheduler,
398
16
                                          &_remote_scan_task_scheduler);
399
16
    return Status::OK();
400
16
}
401
402
void QueryContext::add_fragment_profile(
403
        int fragment_id, const std::vector<std::shared_ptr<TRuntimeProfileTree>>& pipeline_profiles,
404
0
        std::shared_ptr<TRuntimeProfileTree> load_channel_profile) {
405
0
    if (pipeline_profiles.empty()) {
406
0
        std::string msg = fmt::format("Add pipeline profile failed, query {}, fragment {}",
407
0
                                      print_id(this->_query_id), fragment_id);
408
0
        LOG_ERROR(msg);
409
0
        DCHECK(false) << msg;
410
0
        return;
411
0
    }
412
413
0
#ifndef NDEBUG
414
0
    for (const auto& p : pipeline_profiles) {
415
0
        DCHECK(p != nullptr) << fmt::format("Add pipeline profile failed, query {}, fragment {}",
416
0
                                            print_id(this->_query_id), fragment_id);
417
0
    }
418
0
#endif
419
420
0
    std::lock_guard<std::mutex> l(_profile_mutex);
421
0
    VLOG_ROW << fmt::format(
422
0
            "Query add fragment profile, query {}, fragment {}, pipeline profile count {} ",
423
0
            print_id(this->_query_id), fragment_id, pipeline_profiles.size());
424
425
0
    _profile_map.insert(std::make_pair(fragment_id, pipeline_profiles));
426
427
0
    if (load_channel_profile != nullptr) {
428
0
        _load_channel_profile_map.insert(std::make_pair(fragment_id, load_channel_profile));
429
0
    }
430
0
}
431
432
0
void QueryContext::_report_query_profile() {
433
0
    std::lock_guard<std::mutex> lg(_profile_mutex);
434
435
0
    for (auto& [fragment_id, fragment_profile] : _profile_map) {
436
0
        std::shared_ptr<TRuntimeProfileTree> load_channel_profile = nullptr;
437
438
0
        if (_load_channel_profile_map.contains(fragment_id)) {
439
0
            load_channel_profile = _load_channel_profile_map[fragment_id];
440
0
        }
441
442
0
        ExecEnv::GetInstance()->runtime_query_statistics_mgr()->register_fragment_profile(
443
0
                _query_id, this->coord_addr, fragment_id, fragment_profile, load_channel_profile);
444
0
    }
445
446
0
    ExecEnv::GetInstance()->runtime_query_statistics_mgr()->trigger_profile_reporting();
447
0
}
448
449
std::unordered_map<int, std::vector<std::shared_ptr<TRuntimeProfileTree>>>
450
0
QueryContext::_collect_realtime_query_profile() {
451
0
    std::unordered_map<int, std::vector<std::shared_ptr<TRuntimeProfileTree>>> res;
452
0
    std::lock_guard<std::mutex> lock(_pipeline_map_write_lock);
453
0
    for (const auto& [fragment_id, fragment_ctx_wptr] : _fragment_id_to_pipeline_ctx) {
454
0
        if (auto fragment_ctx = fragment_ctx_wptr.lock()) {
455
0
            if (fragment_ctx == nullptr) {
456
0
                std::string msg =
457
0
                        fmt::format("PipelineFragmentContext is nullptr, query {} fragment_id: {}",
458
0
                                    print_id(_query_id), fragment_id);
459
0
                LOG_ERROR(msg);
460
0
                DCHECK(false) << msg;
461
0
                continue;
462
0
            }
463
464
0
            if (fragment_ctx->need_notify_close()) {
465
0
                continue;
466
0
            }
467
468
0
            auto profile = fragment_ctx->collect_realtime_profile();
469
470
0
            if (profile.empty()) {
471
0
                std::string err_msg = fmt::format(
472
0
                        "Get nothing when collecting profile, query {}, fragment_id: {}",
473
0
                        print_id(_query_id), fragment_id);
474
0
                LOG_ERROR(err_msg);
475
0
                DCHECK(false) << err_msg;
476
0
                continue;
477
0
            }
478
479
0
            res.insert(std::make_pair(fragment_id, profile));
480
0
        }
481
0
    }
482
483
0
    return res;
484
0
}
485
486
0
TReportExecStatusParams QueryContext::get_realtime_exec_status() {
487
0
    TReportExecStatusParams exec_status;
488
489
0
    auto realtime_query_profile = _collect_realtime_query_profile();
490
0
    std::vector<std::shared_ptr<TRuntimeProfileTree>> load_channel_profiles;
491
492
0
    for (auto load_channel_profile : _load_channel_profile_map) {
493
0
        if (load_channel_profile.second != nullptr) {
494
0
            load_channel_profiles.push_back(load_channel_profile.second);
495
0
        }
496
0
    }
497
498
0
    exec_status = RuntimeQueryStatisticsMgr::create_report_exec_status_params(
499
0
            this->_query_id, std::move(realtime_query_profile), std::move(load_channel_profiles),
500
0
            /*is_done=*/false);
501
502
0
    return exec_status;
503
0
}
504
505
Status QueryContext::send_block_to_cte_scan(
506
        const TUniqueId& instance_id, int node_id,
507
0
        const google::protobuf::RepeatedPtrField<doris::PBlock>& pblocks, bool eos) {
508
0
    std::unique_lock<std::mutex> l(_cte_scan_lock);
509
0
    auto it = _cte_scan.find(std::make_pair(instance_id, node_id));
510
0
    if (it == _cte_scan.end()) {
511
0
        return Status::InternalError("RecCTEScan not found for instance {}, node {}",
512
0
                                     print_id(instance_id), node_id);
513
0
    }
514
0
    for (const auto& pblock : pblocks) {
515
0
        RETURN_IF_ERROR(it->second->add_block(pblock));
516
0
    }
517
0
    if (eos) {
518
0
        it->second->set_ready();
519
0
    }
520
0
    return Status::OK();
521
0
}
522
523
void QueryContext::registe_cte_scan(const TUniqueId& instance_id, int node_id,
524
0
                                    pipeline::RecCTEScanLocalState* scan) {
525
0
    std::unique_lock<std::mutex> l(_cte_scan_lock);
526
0
    auto key = std::make_pair(instance_id, node_id);
527
0
    DCHECK(!_cte_scan.contains(key)) << "Duplicate registe cte scan for instance "
528
0
                                     << print_id(instance_id) << ", node " << node_id;
529
0
    _cte_scan.emplace(key, scan);
530
0
}
531
532
0
void QueryContext::deregiste_cte_scan(const TUniqueId& instance_id, int node_id) {
533
0
    std::lock_guard<std::mutex> l(_cte_scan_lock);
534
0
    auto key = std::make_pair(instance_id, node_id);
535
0
    DCHECK(_cte_scan.contains(key)) << "Duplicate deregiste cte scan for instance "
536
0
                                    << print_id(instance_id) << ", node " << node_id;
537
0
    _cte_scan.erase(key);
538
0
}
539
540
0
Status QueryContext::reset_global_rf(const google::protobuf::RepeatedField<int32_t>& filter_ids) {
541
0
    if (_merge_controller_handler) {
542
0
        return _merge_controller_handler->reset_global_rf(this, filter_ids);
543
0
    }
544
0
    return Status::OK();
545
0
}
546
547
} // namespace doris