This is an automated email from the ASF dual-hosted git repository.
morrysnow pushed a commit to branch branch-3.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.1 by this push:
new 98c314463db branch-3.1: [improvement](cloud-mow) change
update_delete_bitmap rpc timeout to 30s #51671 (#53110)
98c314463db is described below
commit 98c314463dbcc2275b997a4c849256b7d7f258f8
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 11 19:19:56 2025 +0800
branch-3.1: [improvement](cloud-mow) change update_delete_bitmap rpc
timeout to 30s #51671 (#53110)
Cherry-picked from #51671
Co-authored-by: zhannngchen <[email protected]>
---
be/src/cloud/cloud_meta_mgr.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/be/src/cloud/cloud_meta_mgr.cpp b/be/src/cloud/cloud_meta_mgr.cpp
index fe906d24390..e9b145813f1 100644
--- a/be/src/cloud/cloud_meta_mgr.cpp
+++ b/be/src/cloud/cloud_meta_mgr.cpp
@@ -400,7 +400,7 @@ Status retry_rpc(std::string_view op_name, const Request&
req, Response* res,
std::shared_ptr<MetaService_Stub> stub;
RETURN_IF_ERROR(proxy->get(&stub));
brpc::Controller cntl;
- if (op_name == "get delete bitmap") {
+ if (op_name == "get delete bitmap" || op_name == "update delete
bitmap") {
cntl.set_timeout_ms(3 * config::meta_service_brpc_timeout_ms);
} else {
cntl.set_timeout_ms(config::meta_service_brpc_timeout_ms);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]