Skip to content

Commit

Permalink
[improve](mow) make delete bitmap lock default expiration on metaserv…
Browse files Browse the repository at this point in the history
…ice more reasonable (apache#39429)

Now the lock expiration is too small, be will get lock expired very
frequently when load task on mow is heavy.
  • Loading branch information
hust-hhb authored Aug 16, 2024
1 parent 721f57b commit b3d20e7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2987,8 +2987,8 @@ public static int metaServiceRpcRetryTimes() {
"create table in cloud mode, check recycler key remained, default true"})
public static boolean check_create_table_recycle_key_remained = true;

@ConfField(mutable = true, description = {"存算分离模式下fe向ms请求锁的过期时间,默认10s"})
public static int delete_bitmap_lock_expiration_seconds = 10;
@ConfField(mutable = true, description = {"存算分离模式下fe向ms请求锁的过期时间,默认60s"})
public static int delete_bitmap_lock_expiration_seconds = 60;

@ConfField(mutable = true, description = {"存算分离模式下calculate delete bitmap task 超时时间,默认15s"})
public static int calculate_delete_bitmap_task_timeout_seconds = 15;
Expand Down

0 comments on commit b3d20e7

Please sign in to comment.