.agents/skills/clickhouse-best-practices/SKILL.md
Comprehensive guidance for ClickHouse covering schema design, query optimization, and data ingestion. Contains 28 rules across 3 main categories (schema, query, insert), prioritized by impact.
Official docs: ClickHouse Best Practices
Before answering ClickHouse questions, follow this priority order:
rules/ directoryrule-name..."Why rules take priority: ClickHouse has specific behaviors (columnar storage, sparse indexes, merge tree mechanics) where general database intuition can be misleading. The rules encode validated, ClickHouse-specific guidance.
packages/shared/src/server/queries/clickhouse-sql/event-query-builder.ts
for queries against the events table. Do not hand-roll events SQL unless
you first confirm the query builder cannot express the query.FINAL on the events table; it is designed so FINAL is not
required and the keyword hurts performance.system.query_log.log_comment as
JSON from packages/shared/src/server/clickhouse/queryTags.ts. Parse it with
JSONExtractString(log_comment, 'surface'),
JSONExtractString(log_comment, 'route'), and
JSONExtractString(log_comment, 'projectId'). Known surface values are
trpc, publicapi, worker, mcp, and unknown; ClickhouseWriter inserts
use projectId = "MULTI_PROJECT".contextWithLangfuseProps(...) from
packages/shared/src/server/headerPropagation.ts, setting ClickHouse
surface, optional route, and optional projectId. The ClickHouse
repository layer then reads baggage via normalizeClickHouseQueryTags(...)
and writes it to log_comment. Prefer setting attribution at entry points
rather than passing tags through every repository call.packages/shared/clickhouse/migrations/canonical/** is the single canonical
template tree rendered for clustered and unclustered installs. Put
{CLICKHOUSE_CLUSTER_CLAUSE} at every cluster-aware DDL position. Use
{CLICKHOUSE_REPLICATION_PREFIX} only for engines that deliberately differ
by mode; some tables intentionally stay non-replicated in both modes.ALTER (ADD/DROP/MODIFY COLUMN, ADD/DROP INDEX) in a new
canonical migration must include
{CLICKHOUSE_CLUSTERED_ONLY: SETTINGS alter_sync = 2}, and every
mutation-creating ALTER (MATERIALIZE …, UPDATE, DELETE) must include
{CLICKHOUSE_CLUSTERED_ONLY: SETTINGS mutations_sync = 2}.
This applies to a file holding a single ALTER too — the race is across
migration files, not within one. alter_sync defaults to 1, so the
statement returns as soon as the initiating replica has bumped the table's
metadata version in Keeper; golang-migrate then opens the next file
immediately, and its first ALTER on that table can land on a replica still
on the previous version. ClickHouse refuses to queue it and aborts the whole
run with code 517 because the replica metadata version is behind the common
metadata version. Note that mutations_sync does not substitute for alter_sync: it
governs when mutations finish, not metadata propagation. The renderer omits
these fragments for unclustered MergeTree migrations. Use
{CLICKHOUSE_UNCLUSTERED_ONLY:...} only for a deliberate mode-specific
difference. Do not retrofit synchronization settings into already-shipped
migrations merely to normalize them; the historical compatibility test
intentionally protects their existing output.CREATE OR REPLACE VIEW (nor CREATE OR REPLACE TABLE /
EXCHANGE TABLES) in ClickHouse migrations. The atomic replace requires
renameat2 filesystem support, which NFS-backed self-hosted deployments
(e.g. ClickHouse data on AWS EFS) lack — the migration fails and the
deployment aborts on startup (GitHub issue #14906). Redefine a plain view as
two statements in the same migration file. First use
DROP VIEW IF EXISTS <name> {CLICKHOUSE_CLUSTER_CLAUSE};, then
CREATE VIEW <name> {CLICKHOUSE_CLUSTER_CLAUSE} AS ….
The migration runner passes x-multi-statement=true and golang-migrate
splits files on ; without parsing SQL, so keep semicolons out of comments
and string literals. Keep every statement idempotent
(IF EXISTS/IF NOT EXISTS) so a dirty, half-applied migration can be
re-run after migrate force. Readers hitting the view inside the
drop→create window fail transiently — acceptable for the analytics_*
export views, so keep plain views off product hot paths.DROP and CREATE is silently and
permanently missing from the target table. Change an MV's SELECT with
ALTER TABLE <mv> {CLICKHOUSE_CLUSTER_CLAUSE} MODIFY QUERY <select>, which swaps
the transformation without interrupting ingestion. When the change adds
columns, ALTER the target table(s) first (ADD COLUMN IF NOT EXISTS …),
then MODIFY QUERY; those target-table ALTERs must carry the
clustered-only alter_sync template fragment so no host applies the new MV
query before its target replica has the new columns. MODIFY QUERY is only
viable for TO-table MVs (all Langfuse MVs use TO).Read these rule files in order:
rules/schema-pk-plan-before-creation.md - ORDER BY is immutablerules/schema-pk-cardinality-order.md - Column ordering in keysrules/schema-pk-prioritize-filters.md - Filter column inclusionrules/schema-types-native-types.md - Proper type selectionrules/schema-types-minimize-bitwidth.md - Numeric type sizingrules/schema-types-lowcardinality.md - LowCardinality usagerules/schema-types-avoid-nullable.md - Nullable vs DEFAULTrules/schema-partition-low-cardinality.md - Partition count limitsrules/schema-partition-lifecycle.md - Partitioning purposeCheck for:
{CLICKHOUSE_CLUSTERED_ONLY: SETTINGS alter_sync = 2} — including files with a single ALTER, since the next migration file is what breaks — and every MATERIALIZE … / UPDATE / DELETE includes the corresponding mutations_sync fragment; mutations_sync is not a substitute for alter_sync; do not normalize already-shipped migration output; both rendered modes pass prepareMigrations.test.tsCREATE OR REPLACE VIEW/TABLE or EXCHANGE TABLES in migrations (breaks NFS/EFS self-hosting); plain views are redefined via DROP VIEW IF EXISTS + CREATE VIEW in the same fileALTER TABLE <mv> MODIFY QUERY after the target-table ALTERsRead these rule files:
rules/query-join-choose-algorithm.md - Algorithm selectionrules/query-join-filter-before.md - Pre-join filteringrules/query-join-use-any.md - ANY vs regular JOINrules/query-index-skipping-indices.md - Secondary index usagerules/schema-pk-filter-on-orderby.md - Filter alignment with ORDER BYCheck for:
Read these rule files:
rules/insert-batch-size.md - Batch sizing requirementsrules/insert-mutation-avoid-update.md - UPDATE alternativesrules/insert-mutation-avoid-delete.md - DELETE alternativesrules/insert-async-small-batches.md - Async insert usagerules/insert-optimize-avoid-final.md - OPTIMIZE TABLE risksCheck for:
Structure your response as follows:
## Rules Checked
- `rule-name-1` - Compliant / Violation found
- `rule-name-2` - Compliant / Violation found
...
## Findings
### Violations
- **`rule-name`**: Description of the issue
- Current: [what the code does]
- Required: [what it should do]
- Fix: [specific correction]
### Compliant
- `rule-name`: Brief note on why it's correct
## Recommendations
[Prioritized list of changes, citing rules]
| Priority | Category | Impact | Prefix | Rule Count |
|---|---|---|---|---|
| 1 | Primary Key Selection | CRITICAL | schema-pk- | 4 |
| 2 | Data Type Selection | CRITICAL | schema-types- | 5 |
| 3 | JOIN Optimization | CRITICAL | query-join- | 5 |
| 4 | Insert Batching | CRITICAL | insert-batch- | 1 |
| 5 | Mutation Avoidance | CRITICAL | insert-mutation- | 2 |
| 6 | Partitioning Strategy | HIGH | schema-partition- | 4 |
| 7 | Skipping Indices | HIGH | query-index- | 1 |
| 8 | Materialized Views | HIGH | query-mv- | 2 |
| 9 | Async Inserts | HIGH | insert-async- | 2 |
| 10 | OPTIMIZE Avoidance | HIGH | insert-optimize- | 1 |
| 11 | JSON Usage | MEDIUM | schema-json- | 1 |
schema-pk-plan-before-creation - Plan ORDER BY before table creation (immutable)schema-pk-cardinality-order - Order columns low-to-high cardinalityschema-pk-prioritize-filters - Include frequently filtered columnsschema-pk-filter-on-orderby - Query filters must use ORDER BY prefixschema-types-native-types - Use native types, not String for everythingschema-types-minimize-bitwidth - Use smallest numeric type that fitsschema-types-lowcardinality - LowCardinality for <10K unique stringsschema-types-enum - Enum for finite value sets with validationschema-types-avoid-nullable - Avoid Nullable; use DEFAULT insteadschema-partition-low-cardinality - Keep partition count 100-1,000schema-partition-lifecycle - Use partitioning for data lifecycle, not queriesschema-partition-query-tradeoffs - Understand partition pruning trade-offsschema-partition-start-without - Consider starting without partitioningschema-json-when-to-use - JSON for dynamic schemas; typed columns for knownquery-join-choose-algorithm - Select algorithm based on table sizesquery-join-use-any - ANY JOIN when only one match neededquery-join-filter-before - Filter tables before joiningquery-join-consider-alternatives - Dictionaries/denormalization vs JOINquery-join-null-handling - join_use_nulls=0 for default valuesquery-index-skipping-indices - Skipping indices for non-ORDER BY filtersquery-mv-incremental - Incremental MVs for real-time aggregationsquery-mv-refreshable - Refreshable MVs for complex joinsinsert-batch-size - Batch 10K-100K rows per INSERTinsert-async-small-batches - Async inserts for high-frequency small batchesinsert-format-native - Native format for best performanceinsert-mutation-avoid-update - ReplacingMergeTree instead of ALTER UPDATEinsert-mutation-avoid-delete - Lightweight DELETE or DROP PARTITIONinsert-optimize-avoid-final - Let background merges workThis skill activates when you encounter:
CREATE TABLE statementsALTER TABLE modificationsORDER BY or PRIMARY KEY discussionsEach rule file in rules/ contains: