Relative Content

Tag Archive for clickhouse

Improving performance of UniqExact in ClickHouse

I have a table with more than 500 million rows. When I perform aggregation like sum() or avg() on these rows, it’s very fast. But when I use uniqExact() function on a columns with higher cardinality, it is very slow. How to speed up the performance of uniqExact function? I don’t see blogs related to this.