This is an automated email from the ASF dual-hosted git repository.

jacktengg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new dddb0fc26ef [improvement](spill) enable fuzzy spill (#33291)
dddb0fc26ef is described below

commit dddb0fc26ef123880c9ce9f8550168ca052245d7
Author: TengJianPing <18241664+jackte...@users.noreply.github.com>
AuthorDate: Fri May 17 09:36:58 2024 +0800

    [improvement](spill) enable fuzzy spill (#33291)
---
 fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java | 3 ---
 1 file changed, 3 deletions(-)

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 af2b8f97148..8a1aa410d6c 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
@@ -1981,10 +1981,8 @@ public class SessionVariable implements Serializable, 
Writable {
         this.topnOptLimitThreshold = (int) Math.pow(10, random.nextInt(5));
 
         // for spill to disk
-        /*
         if (Config.pull_request_id > 10000) {
             if (Config.pull_request_id % 2 == 1) {
-                this.enablePipelineXEngine = true;
                 this.enableJoinSpill = true;
                 this.enableSortSpill = true;
                 this.enableAggSpill = true;
@@ -2010,7 +2008,6 @@ public class SessionVariable implements Serializable, 
Writable {
                 this.enableAggSpill = false;
             }
         }
-        */
     }
 
     public String printFuzzyVariables() {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to