clickhouse-query-optimization
Installation
SKILL.md
ClickHouse Query Optimization
Quick Start
Check your query plan:
EXPLAIN
SELECT user_id, COUNT()
FROM events
WHERE timestamp >= '2024-01-01'
GROUP BY user_id;
This shows which parts of the index are used, how many partitions are read, and the aggregation strategy.
When to Use
Related skills