This is an automated email from the ASF dual-hosted git repository. zhangchen 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 29055f2242f [fix](cloud-mow) Make delete bitmap cache expired time more reasonable (#47295) 29055f2242f is described below commit 29055f2242fa8ba9079b8da2f1cc52a881c90d51 Author: huanghaibin <huanghai...@selectdb.com> AuthorDate: Thu Jan 30 07:12:15 2025 +0800 [fix](cloud-mow) Make delete bitmap cache expired time more reasonable (#47295) after pr https://github.com/apache/doris/pull/46365, commit mow table may cost 1800s at most (rpc timeout*retry times), so the delete bitmap cache expiration time should be set to 1800s.This cache will be automatically deleted after the loading task is completed. Only when task fails, this cache will be clean in background. --- be/src/cloud/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/cloud/config.cpp b/be/src/cloud/config.cpp index 66e584905af..141c7a9b170 100644 --- a/be/src/cloud/config.cpp +++ b/be/src/cloud/config.cpp @@ -72,7 +72,7 @@ DEFINE_Bool(enable_cloud_txn_lazy_commit, "false"); DEFINE_mInt32(remove_expired_tablet_txn_info_interval_seconds, "300"); -DEFINE_mInt32(tablet_txn_info_min_expired_seconds, "120"); +DEFINE_mInt32(tablet_txn_info_min_expired_seconds, "1800"); DEFINE_mBool(enable_use_cloud_unique_id_from_fe, "true"); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org