Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
yiguolei committed Dec 26, 2024
1 parent 60e300b commit e5928cc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion be/src/runtime/exec_env.h
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,6 @@ class ExecEnv {
segment_v2::InvertedIndexSearcherCache* _inverted_index_searcher_cache = nullptr;
segment_v2::InvertedIndexQueryCache* _inverted_index_query_cache = nullptr;
QueryCache* _query_cache = nullptr;
std::unique_ptr<DummyLRUCache> _dummy_lru_cache = nullptr;
std::unique_ptr<io::FDCache> _file_cache_open_fd_cache;

pipeline::RuntimeFilterTimerQueue* _runtime_filter_timer_queue = nullptr;
Expand Down
4 changes: 1 addition & 3 deletions be/src/runtime/exec_env_init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ Status ExecEnv::_init(const std::vector<StorePath>& store_paths,
_store_paths.size() * config::flush_thread_num_per_store,
static_cast<size_t>(CpuInfo::num_cores()) * config::max_flush_thread_num_per_cpu);
_load_stream_mgr = std::make_unique<LoadStreamMgr>(num_flush_threads);
_new_load_stream_mgr = NewLoadStreamMgr::create_shared();
_new_load_stream_mgr = NewLoadStreamMgr::create_unique();
_internal_client_cache = new BrpcClientCache<PBackendService_Stub>();
_streaming_client_cache =
new BrpcClientCache<PBackendService_Stub>("baidu_std", "single", "streaming");
Expand Down Expand Up @@ -464,8 +464,6 @@ Status ExecEnv::_init_mem_env() {
return Status::InternalError(ss.str());
}

_dummy_lru_cache = std::make_shared<DummyLRUCache>();

_cache_manager = CacheManager::create_global_instance();

int64_t storage_cache_limit =
Expand Down

0 comments on commit e5928cc

Please sign in to comment.