Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
Description
Currently, distinct aggregation queries are executed as follows:
- the first stage: it just shuffles tuples by hashing grouping keys.
- the second stage: it sorts them and executes sort aggregation.
This way executes queries including distinct aggregation functions with only two stages. But, it leads to large intermediate data during shuffle phase.
This kind of query can be rewritten as two queries:
original query
SELECT grp1, grp2, count(*) as total, count(distinct grp3) as distinct_col from rel1 group by grp1, grp2;
rewritten query
SELECT grp1, grp2, sum(cnt) as total, count(grp3) as distinct_col from ( SELECT grp1, grp2, grp3, count(*) as cnt from rel1 group by grp1, grp2, grp3) tmp1 group by grp1, grp2 ) table1;
I'm expecting that this rewrite will significantly reduce the intermediate data volume and query response time in most cases.
Attachments
Attachments
Issue Links
- relates to
-
TAJO-1010 Improve multiple DISTINCT aggregation.
- Resolved