Skip to content

Commit

Permalink
[fix](cloud-mow) Make delete bitmap cache expired time more reasonable (
Browse files Browse the repository at this point in the history
apache#47295)

after pr apache#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.
  • Loading branch information
hust-hhb authored Jan 29, 2025
1 parent c3e8c64 commit 29055f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/cloud/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Expand Down

0 comments on commit 29055f2

Please sign in to comment.