Coverage Report

Created: 2026-03-26 05:28

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