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
velox use config spill_enable_prefix_sort to control whether use prefix sort or timsort in spill.
Prefix sort requires extra memory for prefix data but gets 2x times acceleration. It does not support string and complex data type now, fallback to std::sort in that case.
The text was updated successfully, but these errors were encountered:
Description
velox use config
spill_enable_prefix_sort
to control whether use prefix sort or timsort in spill.Prefix sort requires extra memory for prefix data but gets 2x times acceleration. It does not support string and complex data type now, fallback to std::sort in that case.
The text was updated successfully, but these errors were encountered: