clickhouse-prod-checklist
Installation
SKILL.md
ClickHouse Production Checklist
Overview
Comprehensive go-live checklist for ClickHouse covering server tuning, schema design, backup configuration, monitoring, and operational readiness.
Prerequisites
- ClickHouse instance provisioned (Cloud or self-hosted)
- Application integration code tested in staging
Checklist
1. Schema & Engine Design
- Tables use
MergeTreefamily engines (notMemory,Log, orTinyLog) -
ORDER BYcolumns match primary filter/group patterns -
PARTITION BYis coarse (monthly or weekly, never by ID)
Related skills