Open puzpuzpuz opened 11 months ago
Currently, GROUP BY queries run in parallel only in a few cases:
select sum(value) from t
select int_key, sum(value) from t
We're going extend the cases where we go with multi-threaded GROUP BY execution and, as a next step, will make SAMPLE BY run parallel.
Currently, GROUP BY queries run in parallel only in a few cases:
select sum(value) from t
.select int_key, sum(value) from t
.We're going extend the cases where we go with multi-threaded GROUP BY execution and, as a next step, will make SAMPLE BY run parallel.