Coverage Report

Created: 2026-06-23 11:16

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/root/doris/be/src/runtime/exec_env.h
Line
Count
Source
1
// Licensed to the Apache Software Foundation (ASF) under one
2
// or more contributor license agreements.  See the NOTICE file
3
// distributed with this work for additional information
4
// regarding copyright ownership.  The ASF licenses this file
5
// to you under the Apache License, Version 2.0 (the
6
// "License"); you may not use this file except in compliance
7
// with the License.  You may obtain a copy of the License at
8
//
9
//   http://www.apache.org/licenses/LICENSE-2.0
10
//
11
// Unless required by applicable law or agreed to in writing,
12
// software distributed under the License is distributed on an
13
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
// KIND, either express or implied.  See the License for the
15
// specific language governing permissions and limitations
16
// under the License.
17
18
#pragma once
19
20
#include <gen_cpp/olap_file.pb.h>
21
22
#include <atomic>
23
#include <map>
24
#include <memory>
25
#include <mutex>
26
#include <optional>
27
#include <string>
28
#include <vector>
29
30
#include "common/config.h"
31
#include "common/multi_version.h"
32
#include "common/status.h"
33
#include "exec/pipeline/pipeline_tracing.h"
34
#include "information_schema/schema_routine_load_job_scanner.h"
35
#include "io/cache/fs_file_cache_storage.h"
36
#include "load/memtable/memtable_memory_limiter.h"
37
#include "runtime/cluster_info.h"
38
#include "runtime/frontend_info.h" // TODO(zhiqiang): find a way to remove this include header
39
#include "storage/index/inverted/inverted_index_writer.h"
40
#include "storage/options.h"
41
#include "storage/tablet/tablet_fwd.h"
42
#include "util/threadpool.h"
43
44
namespace orc {
45
class MemoryPool;
46
}
47
namespace arrow {
48
class MemoryPool;
49
}
50
51
namespace doris {
52
class VDataStreamMgr;
53
class SpillFileManager;
54
class DeltaWriterV2Pool;
55
class DictionaryFactory;
56
class TaskScheduler;
57
struct RuntimeFilterTimerQueue;
58
class WorkloadGroupMgr;
59
struct WriteCooldownMetaExecutors;
60
class TokenBucketRateLimiterHolder;
61
using S3RateLimiterHolder = TokenBucketRateLimiterHolder;
62
class MSRpcRateLimitServices;
63
namespace io {
64
class FileCacheFactory;
65
class HdfsMgr;
66
class PackedFileManager;
67
} // namespace io
68
69
namespace segment_v2 {
70
class InvertedIndexSearcherCache;
71
class InvertedIndexQueryCache;
72
class ConditionCache;
73
class TmpFileDirs;
74
class EncodingInfoResolver;
75
76
namespace inverted_index {
77
class AnalysisFactoryMgr;
78
}
79
80
} // namespace segment_v2
81
82
namespace kerberos {
83
class KerberosTicketMgr;
84
}
85
86
class QueryCache;
87
class WorkloadSchedPolicyMgr;
88
class BfdParser;
89
class BrokerMgr;
90
template <class T>
91
class BrpcClientCache;
92
class ExternalScanContextMgr;
93
class FragmentMgr;
94
class ResultCache;
95
class LoadPathMgr;
96
class NewLoadStreamMgr;
97
class MemTrackerLimiter;
98
class MemTracker;
99
struct TrackerLimiterGroup;
100
class BaseStorageEngine;
101
class ResultBufferMgr;
102
class ResultQueueMgr;
103
class RuntimeQueryStatisticsMgr;
104
class LoadChannelMgr;
105
class LoadStreamMgr;
106
class LoadStreamMapPool;
107
class StreamLoadExecutor;
108
class RoutineLoadTaskExecutor;
109
class StreamLoadRecorderManager;
110
class SmallFileMgr;
111
class BackendServiceClient;
112
class TPaloBrokerServiceClient;
113
class PBackendService_Stub;
114
class PFunctionService_Stub;
115
template <class T>
116
class ClientCache;
117
class HeartbeatFlags;
118
class FrontendServiceClient;
119
class FileMetaCache;
120
class GroupCommitMgr;
121
class CdcClientMgr;
122
class TabletSchemaCache;
123
class TabletColumnObjectPool;
124
class UserFunctionCache;
125
class StoragePageCache;
126
class AnnIndexIVFListCache;
127
class SegmentLoader;
128
class LookupConnectionCache;
129
class RowCache;
130
class DummyLRUCache;
131
class CacheManager;
132
class IdManager;
133
class ProcessProfile;
134
class HeapProfiler;
135
class WalManager;
136
class DNSCache;
137
class IndexPolicyMgr;
138
struct SyncRowsetStats;
139
class DeleteBitmapAggCache;
140
141
// set to true when BE is shutting down
142
inline bool k_doris_exit = false;
143
// set to true after BE start ready
144
inline bool k_is_server_ready = false;
145
146
// Execution environment for queries/plan fragments.
147
// Contains all required global structures, and handles to
148
// singleton services. Clients must call StartServices exactly
149
// once to properly initialise service state.
150
class ExecEnv {
151
public:
152
    // Empty destructor because the compiler-generated one requires full
153
    // declarations for classes in scoped_ptrs.
154
    ~ExecEnv();
155
156
3.29k
    BaseStorageEngine& storage_engine() { return *_storage_engine; }
157
158
    // Initial exec environment. must call this to init all
159
    [[nodiscard]] static Status init(ExecEnv* env, const std::vector<StorePath>& store_paths,
160
                                     const std::vector<StorePath>& spill_store_paths,
161
                                     const std::set<std::string>& broken_paths);
162
163
    // Stop all threads and delete resources.
164
    void destroy();
165
166
    /// Returns the first created exec env instance. In a normal doris, this is
167
    /// the only instance. In test setups with multiple ExecEnv's per process,
168
    /// we return the most recently created instance.
169
1.62M
    static ExecEnv* GetInstance() {
170
1.62M
        static ExecEnv s_exec_env;
171
1.62M
        return &s_exec_env;
172
1.62M
    }
173
174
    // Requires ExenEnv ready
175
    /*
176
     * Parameters:
177
     * - tablet_id: the id of tablet to get
178
     * - sync_stats: the stats of sync rowset
179
     * - force_use_only_cached: whether only use cached data
180
     * - cache_on_miss: whether cache the tablet meta when missing in cache
181
     */
182
    static Result<BaseTabletSPtr> get_tablet(int64_t tablet_id,
183
                                             SyncRowsetStats* sync_stats = nullptr,
184
                                             bool force_use_only_cached = false,
185
                                             bool cache_on_miss = true);
186
187
    static Status get_tablet_meta(int64_t tablet_id, TabletMetaSharedPtr* tablet_meta,
188
                                  bool force_use_only_cached = false);
189
190
478k
    static bool ready() { return _s_ready.load(std::memory_order_acquire); }
191
78
    static bool tracking_memory() { return _s_tracking_memory.load(std::memory_order_acquire); }
192
13
    static bool get_is_upgrading() { return _s_upgrading.load(std::memory_order_acquire); }
193
0
    static void set_is_upgrading() { _s_upgrading = true; }
194
    const std::string& token() const;
195
0
    ExternalScanContextMgr* external_scan_context_mgr() { return _external_scan_context_mgr; }
196
8
    VDataStreamMgr* vstream_mgr() { return _vstream_mgr; }
197
0
    ResultBufferMgr* result_mgr() { return _result_mgr; }
198
1
    ResultQueueMgr* result_queue_mgr() { return _result_queue_mgr; }
199
0
    ClientCache<BackendServiceClient>* client_cache() { return _backend_client_cache; }
200
0
    ClientCache<FrontendServiceClient>* frontend_client_cache() { return _frontend_client_cache; }
201
0
    ClientCache<TPaloBrokerServiceClient>* broker_client_cache() { return _broker_client_cache; }
202
203
2.25k
    WorkloadGroupMgr* workload_group_mgr() { return _workload_group_manager; }
204
0
    WorkloadSchedPolicyMgr* workload_sched_policy_mgr() { return _workload_sched_mgr; }
205
0
    RuntimeQueryStatisticsMgr* runtime_query_statistics_mgr() {
206
0
        return _runtime_query_statistics_mgr;
207
0
    }
208
209
    // using template to simplify client cache management
210
    template <typename T>
211
    inline ClientCache<T>* get_client_cache() {
212
        return nullptr;
213
    }
214
215
    // Save all MemTrackerLimiters in use.
216
    // Each group corresponds to several MemTrackerLimiters and has a lock.
217
    // Multiple groups are used to reduce the impact of locks.
218
    std::vector<TrackerLimiterGroup> mem_tracker_limiter_pool;
219
    void init_mem_tracker();
220
1.11M
    std::shared_ptr<MemTrackerLimiter> orphan_mem_tracker() { return _orphan_mem_tracker; }
221
0
    std::shared_ptr<MemTrackerLimiter> brpc_iobuf_block_memory_tracker() {
222
0
        return _brpc_iobuf_block_memory_tracker;
223
0
    }
224
0
    std::shared_ptr<MemTrackerLimiter> segcompaction_mem_tracker() {
225
0
        return _segcompaction_mem_tracker;
226
0
    }
227
8
    std::shared_ptr<MemTrackerLimiter> stream_load_pipe_tracker() {
228
8
        return _stream_load_pipe_tracker;
229
8
    }
230
0
    std::shared_ptr<MemTrackerLimiter> tablets_no_cache_mem_tracker() {
231
0
        return _tablets_no_cache_mem_tracker;
232
0
    }
233
0
    std::shared_ptr<MemTrackerLimiter> rowsets_no_cache_mem_tracker() {
234
0
        return _rowsets_no_cache_mem_tracker;
235
0
    }
236
0
    std::shared_ptr<MemTrackerLimiter> segments_no_cache_mem_tracker() {
237
0
        return _segments_no_cache_mem_tracker;
238
0
    }
239
2.09k
    std::shared_ptr<MemTrackerLimiter> point_query_executor_mem_tracker() {
240
2.09k
        return _point_query_executor_mem_tracker;
241
2.09k
    }
242
12
    std::shared_ptr<MemTrackerLimiter> query_cache_mem_tracker() {
243
12
        return _query_cache_mem_tracker;
244
12
    }
245
21.0k
    std::shared_ptr<MemTrackerLimiter> block_compression_mem_tracker() {
246
21.0k
        return _block_compression_mem_tracker;
247
21.0k
    }
248
0
    std::shared_ptr<MemTrackerLimiter> rowid_storage_reader_tracker() {
249
0
        return _rowid_storage_reader_tracker;
250
0
    }
251
1.92k
    std::shared_ptr<MemTrackerLimiter> subcolumns_tree_tracker() {
252
1.92k
        return _subcolumns_tree_tracker;
253
1.92k
    }
254
2.64k
    std::shared_ptr<MemTrackerLimiter> s3_file_buffer_tracker() { return _s3_file_buffer_tracker; }
255
208
    std::shared_ptr<MemTrackerLimiter> parquet_meta_tracker() { return _parquet_meta_tracker; }
256
257
0
    ThreadPool* send_batch_thread_pool() { return _send_batch_thread_pool.get(); }
258
5
    ThreadPool* buffered_reader_prefetch_thread_pool() {
259
5
        return _buffered_reader_prefetch_thread_pool.get();
260
5
    }
261
0
    ThreadPool* send_table_stats_thread_pool() { return _send_table_stats_thread_pool.get(); }
262
2.31k
    ThreadPool* s3_file_upload_thread_pool() { return _s3_file_upload_thread_pool.get(); }
263
0
    ThreadPool* lazy_release_obj_pool() { return _lazy_release_obj_pool.get(); }
264
    ThreadPool* non_block_close_thread_pool();
265
0
    ThreadPool* s3_file_system_thread_pool() { return _s3_file_system_thread_pool.get(); }
266
0
    ThreadPool* udf_close_workers_pool() { return _udf_close_workers_thread_pool.get(); }
267
0
    ThreadPool* segment_prefetch_thread_pool() { return _segment_prefetch_thread_pool.get(); }
268
269
    void init_file_cache_factory(std::vector<doris::CachePath>& cache_paths);
270
9.34k
    io::FileCacheFactory* file_cache_factory() { return _file_cache_factory; }
271
0
    UserFunctionCache* user_function_cache() { return _user_function_cache; }
272
122k
    FragmentMgr* fragment_mgr() { return _fragment_mgr; }
273
0
    ResultCache* result_cache() { return _result_cache; }
274
14
    ClusterInfo* cluster_info() { return _cluster_info; }
275
1
    LoadPathMgr* load_path_mgr() { return _load_path_mgr; }
276
1
    BfdParser* bfd_parser() const { return _bfd_parser; }
277
0
    BrokerMgr* broker_mgr() const { return _broker_mgr; }
278
0
    BrpcClientCache<PBackendService_Stub>* brpc_internal_client_cache() const {
279
0
        return _internal_client_cache;
280
0
    }
281
0
    BrpcClientCache<PBackendService_Stub>* brpc_streaming_client_cache() const {
282
0
        return _streaming_client_cache;
283
0
    }
284
0
    BrpcClientCache<PFunctionService_Stub>* brpc_function_client_cache() const {
285
0
        return _function_client_cache;
286
0
    }
287
0
    LoadChannelMgr* load_channel_mgr() { return _load_channel_mgr; }
288
0
    LoadStreamMgr* load_stream_mgr() { return _load_stream_mgr.get(); }
289
3
    NewLoadStreamMgr* new_load_stream_mgr() { return _new_load_stream_mgr.get(); }
290
0
    SmallFileMgr* small_file_mgr() { return _small_file_mgr; }
291
292
1.89k
    SpillFileManager* spill_file_mgr() { return _spill_file_mgr; }
293
294
0
    GroupCommitMgr* group_commit_mgr() { return _group_commit_mgr; }
295
0
    CdcClientMgr* cdc_client_mgr() { return _cdc_client_mgr; }
296
297
3
    const std::vector<StorePath>& store_paths() const { return _store_paths; }
298
299
1
    StreamLoadExecutor* stream_load_executor() { return _stream_load_executor.get(); }
300
0
    RoutineLoadTaskExecutor* routine_load_task_executor() { return _routine_load_task_executor; }
301
0
    HeartbeatFlags* heartbeat_flags() { return _heartbeat_flags; }
302
14
    FileMetaCache* file_meta_cache() { return _file_meta_cache; }
303
39
    MemTableMemoryLimiter* memtable_memory_limiter() { return _memtable_memory_limiter.get(); }
304
47
    WalManager* wal_mgr() { return _wal_manager.get(); }
305
8
    DNSCache* dns_cache() { return _dns_cache; }
306
5
    WriteCooldownMetaExecutors* write_cooldown_meta_executors() {
307
5
        return _write_cooldown_meta_executors.get();
308
5
    }
309
310
0
    kerberos::KerberosTicketMgr* kerberos_ticket_mgr() { return _kerberos_ticket_mgr; }
311
0
    io::HdfsMgr* hdfs_mgr() { return _hdfs_mgr; }
312
0
    io::PackedFileManager* packed_file_manager() { return _packed_file_manager; }
313
3
    IndexPolicyMgr* index_policy_mgr() { return _index_policy_mgr; }
314
1
    S3RateLimiterHolder* warmup_download_rate_limiter() { return _warmup_download_rate_limiter; }
315
0
    MSRpcRateLimitServices* ms_rpc_rate_limit_services() {
316
0
        return _ms_rpc_rate_limit_services.get();
317
0
    }
318
319
#ifdef BE_TEST
320
260
    void set_tmp_file_dir(std::unique_ptr<segment_v2::TmpFileDirs> tmp_file_dirs) {
321
260
        this->_tmp_file_dirs = std::move(tmp_file_dirs);
322
260
    }
323
4
    void set_ready() { this->_s_ready = true; }
324
0
    void set_not_ready() { this->_s_ready = false; }
325
64
    void set_memtable_memory_limiter(MemTableMemoryLimiter* limiter) {
326
64
        _memtable_memory_limiter.reset(limiter);
327
64
    }
328
63
    void set_cluster_info(ClusterInfo* cluster_info) { this->_cluster_info = cluster_info; }
329
    void set_new_load_stream_mgr(std::unique_ptr<NewLoadStreamMgr>&& new_load_stream_mgr);
330
    void clear_new_load_stream_mgr();
331
    void set_stream_load_executor(std::unique_ptr<StreamLoadExecutor>&& stream_load_executor);
332
    void clear_stream_load_executor();
333
334
    void set_storage_engine(std::unique_ptr<BaseStorageEngine>&& engine);
335
    void set_inverted_index_searcher_cache(
336
            segment_v2::InvertedIndexSearcherCache* inverted_index_searcher_cache);
337
    void set_inverted_index_query_cache(
338
0
            segment_v2::InvertedIndexQueryCache* inverted_index_query_cache) {
339
0
        _inverted_index_query_cache = inverted_index_query_cache;
340
0
    }
341
1
    void set_cache_manager(CacheManager* cm) { this->_cache_manager = cm; }
342
1
    void set_process_profile(ProcessProfile* pp) { this->_process_profile = pp; }
343
1
    void set_tablet_schema_cache(TabletSchemaCache* c) { this->_tablet_schema_cache = c; }
344
1
    void set_delete_bitmap_agg_cache(DeleteBitmapAggCache* c) { _delete_bitmap_agg_cache = c; }
345
1
    void set_tablet_column_object_pool(TabletColumnObjectPool* c) {
346
1
        this->_tablet_column_object_pool = c;
347
1
    }
348
1
    void set_storage_page_cache(StoragePageCache* c) { this->_storage_page_cache = c; }
349
0
    void set_ann_index_ivf_list_cache(AnnIndexIVFListCache* c) {
350
0
        this->_ann_index_ivf_list_cache = c;
351
0
    }
352
1
    void set_segment_loader(SegmentLoader* sl) { this->_segment_loader = sl; }
353
0
    void set_routine_load_task_executor(RoutineLoadTaskExecutor* r) {
354
0
        this->_routine_load_task_executor = r;
355
0
    }
356
    void set_wal_mgr(std::unique_ptr<WalManager>&& wm);
357
    void clear_wal_mgr();
358
359
    void set_write_cooldown_meta_executors();
360
1
    static void set_tracking_memory(bool tracking_memory) {
361
1
        _s_tracking_memory.store(tracking_memory, std::memory_order_release);
362
1
    }
363
1
    void set_orc_memory_pool(orc::MemoryPool* pool) { _orc_memory_pool = pool; }
364
2
    void set_non_block_close_thread_pool(std::unique_ptr<ThreadPool>&& pool) {
365
2
        _non_block_close_thread_pool = std::move(pool);
366
2
    }
367
2
    void set_s3_file_upload_thread_pool(std::unique_ptr<ThreadPool>&& pool) {
368
2
        _s3_file_upload_thread_pool = std::move(pool);
369
2
    }
370
0
    void set_file_cache_factory(io::FileCacheFactory* factory) { _file_cache_factory = factory; }
371
2
    void set_file_cache_open_fd_cache(std::unique_ptr<io::FDCache>&& fd_cache) {
372
2
        _file_cache_open_fd_cache = std::move(fd_cache);
373
2
    }
374
#endif
375
2
    LoadStreamMapPool* load_stream_map_pool() { return _load_stream_map_pool.get(); }
376
377
2
    DeltaWriterV2Pool* delta_writer_v2_pool() { return _delta_writer_v2_pool.get(); }
378
379
    void wait_for_all_tasks_done();
380
381
    void update_frontends(const std::vector<TFrontendInfo>& new_infos);
382
    std::vector<TFrontendInfo> get_frontends();
383
    std::map<TNetworkAddress, FrontendInfo> get_running_frontends();
384
385
12.7k
    TabletSchemaCache* get_tablet_schema_cache() { return _tablet_schema_cache; }
386
1.09k
    TabletColumnObjectPool* get_tablet_column_object_pool() { return _tablet_column_object_pool; }
387
27.3k
    StoragePageCache* get_storage_page_cache() { return _storage_page_cache; }
388
0
    AnnIndexIVFListCache* get_ann_index_ivf_list_cache() { return _ann_index_ivf_list_cache; }
389
13.1k
    SegmentLoader* segment_loader() { return _segment_loader; }
390
0
    LookupConnectionCache* get_lookup_connection_cache() { return _lookup_connection_cache; }
391
0
    RowCache* get_row_cache() { return _row_cache; }
392
2.57k
    CacheManager* get_cache_manager() { return _cache_manager; }
393
0
    IdManager* get_id_manager() { return _id_manager; }
394
4
    ProcessProfile* get_process_profile() { return _process_profile; }
395
0
    HeapProfiler* get_heap_profiler() { return _heap_profiler; }
396
391
    segment_v2::InvertedIndexSearcherCache* get_inverted_index_searcher_cache() {
397
391
        return _inverted_index_searcher_cache;
398
391
    }
399
357
    segment_v2::InvertedIndexQueryCache* get_inverted_index_query_cache() {
400
357
        return _inverted_index_query_cache;
401
357
    }
402
0
    segment_v2::EncodingInfoResolver* get_encoding_info_resolver() {
403
0
        return _encoding_info_resolver;
404
0
    }
405
0
    segment_v2::ConditionCache* get_condition_cache() { return _condition_cache; }
406
3
    QueryCache* get_query_cache() { return _query_cache; }
407
408
2
    RuntimeFilterTimerQueue* runtime_filter_timer_queue() { return _runtime_filter_timer_queue; }
409
410
2
    DictionaryFactory* dict_factory() { return _dict_factory; }
411
412
0
    PipelineTracerContext* pipeline_tracer_context() { return _pipeline_tracer_ctx.get(); }
413
414
611
    segment_v2::TmpFileDirs* get_tmp_file_dirs() { return _tmp_file_dirs.get(); }
415
25.6k
    io::FDCache* file_cache_open_fd_cache() const { return _file_cache_open_fd_cache.get(); }
416
417
54
    orc::MemoryPool* orc_memory_pool() { return _orc_memory_pool; }
418
0
    arrow::MemoryPool* arrow_memory_pool() { return _arrow_memory_pool; }
419
420
    bool check_auth_token(const std::string& auth_token);
421
10
    void set_stream_mgr(VDataStreamMgr* vstream_mgr) { _vstream_mgr = vstream_mgr; }
422
    void clear_stream_mgr();
423
424
205
    DeleteBitmapAggCache* delete_bitmap_agg_cache() { return _delete_bitmap_agg_cache; }
425
    Status init_mem_env();
426
427
private:
428
    ExecEnv();
429
430
    [[nodiscard]] Status _init(const std::vector<StorePath>& store_paths,
431
                               const std::vector<StorePath>& spill_store_paths,
432
                               const std::set<std::string>& broken_paths);
433
    void _destroy();
434
435
    Status _check_deploy_mode();
436
437
    Status _create_internal_workload_group();
438
    void _init_runtime_filter_timer_queue();
439
440
    inline static std::atomic_bool _s_ready {false};
441
    inline static std::atomic_bool _s_tracking_memory {false};
442
    std::vector<StorePath> _store_paths;
443
    std::vector<StorePath> _spill_store_paths;
444
    inline static std::atomic_bool _s_upgrading {false};
445
446
    io::FileCacheFactory* _file_cache_factory = nullptr;
447
    UserFunctionCache* _user_function_cache = nullptr;
448
    // Leave protected so that subclasses can override
449
    ExternalScanContextMgr* _external_scan_context_mgr = nullptr;
450
    VDataStreamMgr* _vstream_mgr = nullptr;
451
    ResultBufferMgr* _result_mgr = nullptr;
452
    ResultQueueMgr* _result_queue_mgr = nullptr;
453
    ClientCache<BackendServiceClient>* _backend_client_cache = nullptr;
454
    ClientCache<FrontendServiceClient>* _frontend_client_cache = nullptr;
455
    ClientCache<TPaloBrokerServiceClient>* _broker_client_cache = nullptr;
456
457
    // The default tracker consumed by mem hook. If the thread does not attach other trackers,
458
    // by default all consumption will be passed to the process tracker through the orphan tracker.
459
    // In real time, `consumption of all limiter trackers` + `orphan tracker consumption` = `process tracker consumption`.
460
    // Ideally, all threads are expected to attach to the specified tracker, so that "all memory has its own ownership",
461
    // and the consumption of the orphan mem tracker is close to 0, but greater than 0.
462
    std::shared_ptr<MemTrackerLimiter> _orphan_mem_tracker;
463
    std::shared_ptr<MemTrackerLimiter> _brpc_iobuf_block_memory_tracker;
464
    // Count the memory consumption of segment compaction tasks.
465
    std::shared_ptr<MemTrackerLimiter> _segcompaction_mem_tracker;
466
    std::shared_ptr<MemTrackerLimiter> _stream_load_pipe_tracker;
467
468
    std::shared_ptr<MemTrackerLimiter> _tablets_no_cache_mem_tracker;
469
    std::shared_ptr<MemTrackerLimiter> _rowsets_no_cache_mem_tracker;
470
    std::shared_ptr<MemTrackerLimiter> _segments_no_cache_mem_tracker;
471
472
    // Tracking memory may be shared between multiple queries.
473
    std::shared_ptr<MemTrackerLimiter> _point_query_executor_mem_tracker;
474
    std::shared_ptr<MemTrackerLimiter> _block_compression_mem_tracker;
475
    std::shared_ptr<MemTrackerLimiter> _query_cache_mem_tracker;
476
477
    // TODO, looking forward to more accurate tracking.
478
    std::shared_ptr<MemTrackerLimiter> _rowid_storage_reader_tracker;
479
    std::shared_ptr<MemTrackerLimiter> _subcolumns_tree_tracker;
480
    std::shared_ptr<MemTrackerLimiter> _s3_file_buffer_tracker;
481
482
    // Tracking memory consumption of parquet meta
483
    std::shared_ptr<MemTrackerLimiter> _parquet_meta_tracker;
484
485
    std::unique_ptr<ThreadPool> _send_batch_thread_pool;
486
    // Threadpool used to prefetch remote file for buffered reader
487
    std::unique_ptr<ThreadPool> _buffered_reader_prefetch_thread_pool;
488
    // Threadpool used to send TableStats to FE
489
    std::unique_ptr<ThreadPool> _send_table_stats_thread_pool;
490
    // Threadpool used to upload local file to s3
491
    std::unique_ptr<ThreadPool> _s3_file_upload_thread_pool;
492
    // Pool used by join node to build hash table
493
    // Pool to use a new thread to release object
494
    std::unique_ptr<ThreadPool> _lazy_release_obj_pool;
495
    std::unique_ptr<ThreadPool> _non_block_close_thread_pool;
496
    std::unique_ptr<ThreadPool> _s3_file_system_thread_pool;
497
    // for java-udf to close
498
    std::unique_ptr<ThreadPool> _udf_close_workers_thread_pool;
499
    // Threadpool used to prefetch segment file cache blocks
500
    std::unique_ptr<ThreadPool> _segment_prefetch_thread_pool;
501
502
    FragmentMgr* _fragment_mgr = nullptr;
503
    WorkloadGroupMgr* _workload_group_manager = nullptr;
504
505
    ResultCache* _result_cache = nullptr;
506
    ClusterInfo* _cluster_info = nullptr;
507
    LoadPathMgr* _load_path_mgr = nullptr;
508
509
    BfdParser* _bfd_parser = nullptr;
510
    BrokerMgr* _broker_mgr = nullptr;
511
    LoadChannelMgr* _load_channel_mgr = nullptr;
512
    std::unique_ptr<LoadStreamMgr> _load_stream_mgr;
513
    std::unique_ptr<NewLoadStreamMgr> _new_load_stream_mgr;
514
    BrpcClientCache<PBackendService_Stub>* _internal_client_cache = nullptr;
515
    BrpcClientCache<PBackendService_Stub>* _streaming_client_cache = nullptr;
516
    BrpcClientCache<PFunctionService_Stub>* _function_client_cache = nullptr;
517
518
    std::unique_ptr<StreamLoadExecutor> _stream_load_executor;
519
    RoutineLoadTaskExecutor* _routine_load_task_executor = nullptr;
520
    StreamLoadRecorderManager* _stream_load_recorder_manager = nullptr;
521
    SmallFileMgr* _small_file_mgr = nullptr;
522
    HeartbeatFlags* _heartbeat_flags = nullptr;
523
524
    // To save meta info of external file, such as parquet footer.
525
    FileMetaCache* _file_meta_cache = nullptr;
526
    std::unique_ptr<MemTableMemoryLimiter> _memtable_memory_limiter;
527
    std::unique_ptr<LoadStreamMapPool> _load_stream_map_pool;
528
    std::unique_ptr<DeltaWriterV2Pool> _delta_writer_v2_pool;
529
    std::unique_ptr<WalManager> _wal_manager;
530
    DNSCache* _dns_cache = nullptr;
531
    std::unique_ptr<WriteCooldownMetaExecutors> _write_cooldown_meta_executors;
532
533
    std::mutex _frontends_lock;
534
    // ip:brpc_port -> frontend_indo
535
    std::map<TNetworkAddress, FrontendInfo> _frontends;
536
    GroupCommitMgr* _group_commit_mgr = nullptr;
537
    CdcClientMgr* _cdc_client_mgr = nullptr;
538
539
    // Maybe we should use unique_ptr, but it need complete type, which means we need
540
    // to include many headers, and for some cpp file that do not need class like TabletSchemaCache,
541
    // these redundancy header could introduce potential bug, at least, more header means slow compile.
542
    // So we choose to use raw pointer, please remember to delete these pointer in deconstructor.
543
    TabletSchemaCache* _tablet_schema_cache = nullptr;
544
    TabletColumnObjectPool* _tablet_column_object_pool = nullptr;
545
    std::unique_ptr<BaseStorageEngine> _storage_engine;
546
    StoragePageCache* _storage_page_cache = nullptr;
547
    AnnIndexIVFListCache* _ann_index_ivf_list_cache = nullptr;
548
    SegmentLoader* _segment_loader = nullptr;
549
    LookupConnectionCache* _lookup_connection_cache = nullptr;
550
    RowCache* _row_cache = nullptr;
551
    CacheManager* _cache_manager = nullptr;
552
    IdManager* _id_manager = nullptr;
553
    ProcessProfile* _process_profile = nullptr;
554
    HeapProfiler* _heap_profiler = nullptr;
555
    segment_v2::InvertedIndexSearcherCache* _inverted_index_searcher_cache = nullptr;
556
    segment_v2::InvertedIndexQueryCache* _inverted_index_query_cache = nullptr;
557
    segment_v2::EncodingInfoResolver* _encoding_info_resolver = nullptr;
558
    segment_v2::ConditionCache* _condition_cache = nullptr;
559
    QueryCache* _query_cache = nullptr;
560
    std::unique_ptr<io::FDCache> _file_cache_open_fd_cache;
561
    DeleteBitmapAggCache* _delete_bitmap_agg_cache {nullptr};
562
563
    RuntimeFilterTimerQueue* _runtime_filter_timer_queue = nullptr;
564
    DictionaryFactory* _dict_factory = nullptr;
565
566
    WorkloadSchedPolicyMgr* _workload_sched_mgr = nullptr;
567
    IndexPolicyMgr* _index_policy_mgr = nullptr;
568
569
    RuntimeQueryStatisticsMgr* _runtime_query_statistics_mgr = nullptr;
570
571
    std::unique_ptr<PipelineTracerContext> _pipeline_tracer_ctx;
572
    std::unique_ptr<segment_v2::TmpFileDirs> _tmp_file_dirs;
573
574
    SpillFileManager* _spill_file_mgr = nullptr;
575
576
    orc::MemoryPool* _orc_memory_pool = nullptr;
577
    arrow::MemoryPool* _arrow_memory_pool = nullptr;
578
579
    kerberos::KerberosTicketMgr* _kerberos_ticket_mgr = nullptr;
580
    io::HdfsMgr* _hdfs_mgr = nullptr;
581
    io::PackedFileManager* _packed_file_manager = nullptr;
582
    S3RateLimiterHolder* _warmup_download_rate_limiter = nullptr;
583
    std::unique_ptr<MSRpcRateLimitServices> _ms_rpc_rate_limit_services;
584
};
585
586
template <>
587
0
inline ClientCache<BackendServiceClient>* ExecEnv::get_client_cache<BackendServiceClient>() {
588
0
    return _backend_client_cache;
589
0
}
590
template <>
591
0
inline ClientCache<FrontendServiceClient>* ExecEnv::get_client_cache<FrontendServiceClient>() {
592
0
    return _frontend_client_cache;
593
0
}
594
template <>
595
inline ClientCache<TPaloBrokerServiceClient>*
596
0
ExecEnv::get_client_cache<TPaloBrokerServiceClient>() {
597
0
    return _broker_client_cache;
598
0
}
599
600
0
inline segment_v2::InvertedIndexQueryCache* GetInvertedIndexQueryCache() {
601
0
    return ExecEnv::GetInstance()->get_inverted_index_query_cache();
602
0
}
603
604
} // namespace doris