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
Installs
9
GitHub Stars
1
First Seen
Jan 26, 2026