This is an automated email from the ASF dual-hosted git repository.
dataroaring 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 c930877eb25 [Fix](CloudStorageEngine) Fix
`CloudStorageEngine::~CloudStorageEngine` coredump (#50486)
c930877eb25 is described below
commit c930877eb2578674dee6bd452f19e8d5bc273c7f
Author: bobhan1 <[email protected]>
AuthorDate: Mon Apr 28 19:41:41 2025 +0800
[Fix](CloudStorageEngine) Fix `CloudStorageEngine::~CloudStorageEngine`
coredump (#50486)
---
be/src/cloud/cloud_storage_engine.cpp | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/be/src/cloud/cloud_storage_engine.cpp
b/be/src/cloud/cloud_storage_engine.cpp
index 00a119c1b08..cf50eabd03f 100644
--- a/be/src/cloud/cloud_storage_engine.cpp
+++ b/be/src/cloud/cloud_storage_engine.cpp
@@ -238,6 +238,10 @@ void CloudStorageEngine::stop() {
_cumu_compaction_thread_pool->shutdown();
}
LOG(INFO) << "Cloud storage engine is stopped.";
+
+ if (_calc_tablet_delete_bitmap_task_thread_pool) {
+ _calc_tablet_delete_bitmap_task_thread_pool->shutdown();
+ }
}
bool CloudStorageEngine::stopped() {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]