This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
commit d3721455b03f73c5235bf33d21eb93448e1b8590 Author: HappenLee <happen...@hotmail.com> AuthorDate: Thu Jan 11 16:19:18 2024 +0800 [Session](rf) Change the default min size of bf runtime filter (#29837) --- fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java b/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java index d2f05fc66a7..45f65c6338e 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java +++ b/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java @@ -867,7 +867,7 @@ public class SessionVariable implements Serializable, Writable { private int runtimeBloomFilterSize = 2097152; @VariableMgr.VarAttr(name = RUNTIME_BLOOM_FILTER_MIN_SIZE, needForward = true) - private int runtimeBloomFilterMinSize = 1048576; + private int runtimeBloomFilterMinSize = 2048; @VariableMgr.VarAttr(name = RUNTIME_BLOOM_FILTER_MAX_SIZE, needForward = true) private int runtimeBloomFilterMaxSize = 16777216; --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org