This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new bf4072e5b0 [fix](StorageEngine) release DataDir after the thread pool has been shutdown (#20014) bf4072e5b0 is described below commit bf4072e5b0bcc41385d77b3a1e54d180097d8c17 Author: bobhan1 <bh2444151...@outlook.com> AuthorDate: Wed May 24 23:51:06 2023 +0800 [fix](StorageEngine) release DataDir after the thread pool has been shutdown (#20014) --- be/src/olap/storage_engine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/olap/storage_engine.cpp b/be/src/olap/storage_engine.cpp index 79bb7c5363..d3cb227bfa 100644 --- a/be/src/olap/storage_engine.cpp +++ b/be/src/olap/storage_engine.cpp @@ -140,7 +140,6 @@ StorageEngine::StorageEngine(const EngineOptions& options) StorageEngine::~StorageEngine() { DEREGISTER_HOOK_METRIC(unused_rowsets_count); - _clear(); if (_base_compaction_thread_pool) { _base_compaction_thread_pool->shutdown(); @@ -155,6 +154,7 @@ StorageEngine::~StorageEngine() { if (_tablet_meta_checkpoint_thread_pool) { _tablet_meta_checkpoint_thread_pool->shutdown(); } + _clear(); _s_instance = nullptr; } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org