From 3b246acb5f8e467bf61bd49c2b4b2fef48c8c0e0 Mon Sep 17 00:00:00 2001 From: huanghaibin Date: Thu, 30 Jan 2025 07:12:15 +0800 Subject: [PATCH] [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 1b56874144275c..59a3c59b5d3b10 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");