-
Notifications
You must be signed in to change notification settings - Fork 797
chore(query): Tuning sort spill memory usage #18520
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
🤖 Smart Auto-retry Analysis (Retry 1)
📊 Summary
❌ NO RETRY NEEDEDAll failures appear to be code/test issues requiring manual fixes. 🔍 Job Details
🤖 AboutAutomated analysis using job annotations to distinguish infrastructure issues (auto-retried) from code/test issues (manual fixes needed). |
Benchmark: Settings
DataSet: tpch sf100 SQL
Analysis: Currently, the sort restore step does not read the global memory usage, but instead statically determines the available memory by referring to the memory usage of the collect step, which is an inelastic strategy. After the restore step, since there is no more scanning, we can't see any problem. Bug fixed: It is recommended to use a larger |
I hereby agree to the terms of the CLA available at: https://docs.databend.com/dev/policies/cla/
Summary
sort_spilling_batch_bytes
Tests
Type of change
This change is