Coverage Report

Created: 2026-03-11 08:44

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