[fix](spill) disable spill of sort and agg for now to avoid diisk overflow (#26209)

This commit is contained in:
TengJianPing
2023-11-01 17:20:26 +08:00
committed by GitHub
parent bfca1bf206
commit 1c2831e06f

View File

@ -2405,9 +2405,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);