|
|
|
|
|
by hodgesrm
2356 days ago
|
|
Mat views are great as the article showed. I use them to get query response down to milliseconds, as they vastly reduce the amount of data ClickHouse must scan. That said, there are a lot of other tools: column storage, vectorwise query, efficient compression including column codecs, and skip indexes to name a few. If you only have a few billion rows it's still possible to get sub-second query results using brute force scans. Disclaimer: I work for Altinity, who wrote this article. |
|