Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -2654,12 +2654,12 @@ public class Config extends ConfigBase {
public static int arrow_flight_max_connections = 4096;

@ConfField(mutable = true, masterOnly = true, description = {
"Auto Buckets中按照partition size去估算bucket数,存算一体partition size 1G估算一个bucket,"
+ "但存算分离下partition size 10G估算一个bucket。 若配置小于0,会在在代码中会自适应存算一体模式默认1G,在存算分离默认10G",
"Auto Buckets中按照partition size去估算bucket数,存算一体partition size 5G估算一个bucket,"
+ "但存算分离下partition size 10G估算一个bucket。 若配置小于0,会在在代码中会自适应存算一体模式默认5G,在存算分离默认10G",
"In Auto Buckets, the number of buckets is estimated based on the partition size. "
+ "For storage and computing integration, a partition size of 1G is estimated as one bucket."
+ "For storage and computing integration, a partition size of 5G is estimated as one bucket."
+ " but for cloud, a partition size of 10G is estimated as one bucket. "
+ "If the configuration is less than 0, the code will have an adaptive non-cloud mode with a default of 1G,"
+ "If the configuration is less than 0, the code will have an adaptive non-cloud mode with a default of 5G,"
+ " and in cloud mode with a default of 10G."
})
public static int autobucket_partition_size_per_bucket_gb = -1;
Expand Down