You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some queries with large memory allocation may cause OOM which is unstable.
After we have the memory tracker, we can spill extra memory into external storage(disk, s3). This will surely make the query run slower, but it ensures we can get the final results.
tasks to do
spill memory in group by query (HashTable)
spill memory in join query (HashTable)
spill memory in order by query (multi-way external merge sort)
The text was updated successfully, but these errors were encountered:
Summary
Description for this feature.
Some queries with large memory allocation may cause OOM which is unstable.
After we have the memory tracker, we can spill extra memory into external storage(disk, s3). This will surely make the query run slower, but it ensures we can get the final results.
tasks to do
The text was updated successfully, but these errors were encountered: