-
Notifications
You must be signed in to change notification settings - Fork 898
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Choose cheapest aggregated path as base for chunk-wise aggregation (#…
…7025) Currently we use the cheapest path before final aggregation for this (i.e. Append over individual chunks), but it does not consider the cost of a Sort that might be required before aggregation. To account for this, use instead the child path of the cheapest final aggregated path. Remove duplicate handling of parallel paths, because the cheapest path is either parallel or not, and we don't need to handle both together. This is mostly needed for PR #6879 , where we introduce the unsorted DecompressChunk paths into consideration, and they are wrongly chosen as a basis for partial aggregation without regard for the cost of Sort over Append.
- Loading branch information
Showing
21 changed files
with
1,142 additions
and
1,381 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.