Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion be/src/cloud/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ DEFINE_mBool(enable_batch_get_delete_bitmap, "false");
// to get the remaining rowsets' results.
DEFINE_mInt64(get_delete_bitmap_bytes_threshold, "524288000"); // 500MB

DEFINE_Bool(enable_cloud_txn_lazy_commit, "false");
DEFINE_Bool(enable_cloud_txn_lazy_commit, "true");

DEFINE_mInt32(remove_expired_tablet_txn_info_interval_seconds, "300");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3530,8 +3530,8 @@ public static int metaServiceRpcRetryTimes() {
+ "Default value is true." })
public static boolean enable_commit_lock_for_all_tables = true;

@ConfField(mutable = true, description = {"存算分离模式下是否开启大事务提交,默认 false"})
public static boolean enable_cloud_txn_lazy_commit = false;
@ConfField(mutable = true, description = {"存算分离模式下是否开启大事务提交,默认 true"})
public static boolean enable_cloud_txn_lazy_commit = true;

@ConfField(mutable = true, masterOnly = true,
description = {"存算分离模式下,当 tablet 分布的 be 异常,是否立即映射 tablet 到新的 be 上,默认 false"})
Expand Down
Loading