This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push: new 7d747acbce3 branch-3.0: [Fix](CloudStorageEngine) Fix `CloudStorageEngine::~CloudStorageEngine` coredump #50486 (#50515) 7d747acbce3 is described below commit 7d747acbce3d78c565696148f557e448211ed673 Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> AuthorDate: Tue Apr 29 15:08:00 2025 +0800 branch-3.0: [Fix](CloudStorageEngine) Fix `CloudStorageEngine::~CloudStorageEngine` coredump #50486 (#50515) Cherry-picked from #50486 Co-authored-by: bobhan1 <bao...@selectdb.com> --- 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 f74dc4230a7..929f5480538 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: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org