Safari Reading List Wiki Home About Schema Log Sources

Entities

ClickHouse medium

Type
entity
Tags
data-systems software-engineering
Confidence
medium
Created
2026-08-09
Updated
2026-08-09
Sources
raw/articles/top-10-best-practices-tips-for-clickhouse-487b9335d51f.md, raw/articles/how-clickhouse-makes-top-n-queries-faster-with-granule-level-data-skippi-4fcd7a80377b.md, raw/articles/clickhouse-release-26-5-89bd1d29426a.md, raw/articles/rebuilding-postgres-for-300x-faster-analytics-batching-operator-fusion-a-f2691548044e.md

ClickHouse

ClickHouse is a recurring reference point for analytical database design: data modeling, sparse or skipping indexes, precomputation, and execution-time pruning. Most quantitative gains in this corpus come from vendor material or benchmark-specific reports, so they illustrate mechanisms rather than general performance guarantees.

Recurring themes

  • Schema and primary-key order are presented as central to reducing read volume; partitioning, data types, batching, projections, and materialized views are workload-specific levers. [src]
  • Top-N and release examples illustrate granule-level data skipping, dynamic thresholds, limit pushdown, grouping shortcuts, and query-cache controls. [src] [src]
  • The pgrust comparison frames ClickHouse against a different execution model, helping distinguish columnar/vectorized analytics from PostgreSQL’s traditional row-at-a-time executor. [src]

Related pages