This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.0 by this push:
new 1499b161104 [fix](autobucket) fix autobucket config masterOnly=true
#36116 (#36287)
1499b161104 is described below
commit 1499b1611043aa095a512883a802f3e91c663063
Author: yujun <[email protected]>
AuthorDate: Fri Jun 14 14:26:02 2024 +0800
[fix](autobucket) fix autobucket config masterOnly=true #36116 (#36287)
cherry pick from #36116
---
fe/fe-common/src/main/java/org/apache/doris/common/Config.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
b/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
index e7729889672..99e59c02264 100644
--- a/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
+++ b/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
@@ -2246,13 +2246,13 @@ public class Config extends ConfigBase {
})
public static long analyze_record_limit = 20000;
- @ConfField(mutable = true, description = {
+ @ConfField(mutable = true, masterOnly = true, description = {
"Auto Buckets中最小的buckets数目",
"min buckets of auto bucket"
})
public static int autobucket_min_buckets = 1;
- @ConfField(mutable = true, description = {
+ @ConfField(mutable = true, masterOnly = true, description = {
"Auto Buckets中最大的buckets数目",
"max buckets of auto bucket"
})
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]