This is an automated email from the ASF dual-hosted git repository.
kxiao 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 213e6b0ec0c [fix](spill) disable spill of sort and agg for now to
avoid diisk overflow (#26209) (#26228)
213e6b0ec0c is described below
commit 213e6b0ec0cc5d3be65e5144b43284383cdf5496
Author: TengJianPing <[email protected]>
AuthorDate: Wed Nov 1 19:51:53 2023 +0800
[fix](spill) disable spill of sort and agg for now to avoid diisk overflow
(#26209) (#26228)
---
fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java | 4 ++--
1 file changed, 2 insertions(+), 2 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 d63edaa7202..635b1685ace 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
@@ -2267,9 +2267,9 @@ public class SessionVariable implements Serializable,
Writable {
tResult.setRepeatMaxNum(repeatMaxNum);
- tResult.setExternalSortBytesThreshold(externalSortBytesThreshold);
+ tResult.setExternalSortBytesThreshold(0); // disable for now
- tResult.setExternalAggBytesThreshold(externalAggBytesThreshold);
+ tResult.setExternalAggBytesThreshold(0); // disable for now
tResult.setExternalAggPartitionBits(externalAggPartitionBits);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]