This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push:
new 14a1edc6ec9 [fix](spill) disable fuzzy spill for now (#42892) (#42894)
14a1edc6ec9 is described below
commit 14a1edc6ec96c737ab5d15eac6b5e392f8a7a021
Author: TengJianPing <[email protected]>
AuthorDate: Mon Nov 4 12:01:24 2024 +0800
[fix](spill) disable fuzzy spill for now (#42892) (#42894)
BP #42892
---
fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java | 3 +++
1 file changed, 3 insertions(+)
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 dee675a30d5..b79f7d4294e 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
@@ -2321,6 +2321,8 @@ public class SessionVariable implements Serializable,
Writable {
this.topnOptLimitThreshold = (int) Math.pow(10, random.nextInt(5));
// for spill to disk
+ /*
+ // disable fuzzy spill for now since it's in progress of refactoring
if (Config.pull_request_id > 10000) {
if (Config.pull_request_id % 2 == 0) {
this.enableJoinSpill = true;
@@ -2348,6 +2350,7 @@ public class SessionVariable implements Serializable,
Writable {
this.enableAggSpill = false;
}
}
+ */
}
public String printFuzzyVariables() {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]