Skip to content

Commit

Permalink
add max_binlog_message_size
Browse files Browse the repository at this point in the history
  • Loading branch information
dataroaring committed Jan 26, 2024
1 parent 7b8c566 commit 36d5e6e
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2145,6 +2145,11 @@ public class Config extends ConfigBase {
"Whether to enable binlog feature"})
public static boolean enable_feature_binlog = false;

@ConfField(mutable = false, masterOnly = false, expType = ExperimentalType.EXPERIMENTAL, description = {
"设置 binlog 消息最字节长度",
"Set the maximum byte length of binlog message"})
public static long max_binlog_messsage_size = 1024 * 1024 * 1024;

@ConfField(mutable = true, masterOnly = true, description = {
"是否禁止使用 WITH REOSOURCE 语句创建 Catalog。",
"Whether to disable creating catalog with WITH RESOURCE statement."})
Expand Down

0 comments on commit 36d5e6e

Please sign in to comment.