惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
博客园_首页
C
Check Point Blog
小众软件
小众软件
博客园 - 叶小钗
Blog — PlanetScale
Blog — PlanetScale
Engineering at Meta
Engineering at Meta
美团技术团队
Martin Fowler
Martin Fowler
Vercel News
Vercel News
D
Docker
罗磊的独立博客
B
Blog RSS Feed
The Cloudflare Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
Last Week in AI
Last Week in AI
T
Tailwind CSS Blog
雷峰网
雷峰网
博客园 - Franky

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Day 17 of #100DaysOfClickHouse: Mastering Data Filtering ...
Kanishga Subramani · 2026-06-14 · via DEV Community

When working with ClickHouse®, writing a query is usually straightforward. Writing an efficient query, however, requires understanding how ClickHouse reads and filters data.

Many users assume that adding a simple WHERE clause automatically results in fast query performance. While filtering is certainly important, not all filters are equally effective.

The difference between a query that scans millions of rows and one that scans only a fraction of them often comes down to how the filtering conditions align with the table design.

In this article, we'll explore how filtering works in ClickHouse®, common mistakes to avoid, and practical best practices for improving query performance.

Why Filtering Matters

ClickHouse® is designed to process massive analytical datasets efficiently.

Even though the engine is incredibly fast, scanning unnecessary data still consumes:

  • CPU resources
  • Memory
  • Disk I/O
  • Network bandwidth

Effective filtering helps ClickHouse eliminate irrelevant data as early as possible, reducing the amount of work required to execute a query.

For large datasets, proper filtering can significantly reduce query execution times.


Understanding How ClickHouse Filters Data

Unlike traditional databases that often rely heavily on row-level indexes, ClickHouse primarily uses:

  • Partitions
  • Sorting keys
  • Primary indexes
  • Data skipping indexes

These mechanisms help the engine determine which portions of data can safely be ignored during query execution.

The goal is not to find individual rows immediately but to avoid reading large sections of irrelevant data.


Start with the Sorting Key

One of the most important factors affecting filtering performance is the table's sorting key.

Consider a table created as follows:

CREATE TABLE events
(
    timestamp DateTime,
    user_id UInt64,
    event_type String
)
ENGINE = MergeTree
ORDER BY (user_id, timestamp);

Now consider this query:

SELECT *
FROM events
WHERE user_id = 12345;

Because the data is physically ordered by user_id, ClickHouse can quickly identify the relevant data ranges and skip large portions of the table.

This is far more efficient than filtering on a column that does not participate in the sorting key.

Key Takeaway

Design sorting keys around the columns most commonly used in filtering conditions.


Filter Early Whenever Possible

Filtering conditions should be applied as early as possible.

Good:

SELECT *
FROM events
WHERE timestamp >= today() - 7;

Less efficient:

SELECT *
FROM
(
    SELECT *
    FROM events
)
WHERE timestamp >= today() - 7;

Applying filters early allows ClickHouse to reduce the amount of data processed throughout the query pipeline.

Key Takeaway

The earlier irrelevant rows are removed, the less work ClickHouse has to perform later.


Use Time-Based Filters

Most analytical workloads involve time-series data.

Queries that restrict the time range often perform significantly better than queries that scan the entire dataset.

Example:

SELECT count()
FROM events
WHERE timestamp >= now() - INTERVAL 1 DAY;

Instead of reading years of historical data, ClickHouse only examines the relevant portion of the dataset.

This becomes even more effective when partitions are based on time.

Key Takeaway

Always narrow the time range whenever possible.


Avoid Functions on Filtered Columns

A common performance mistake involves applying functions directly to columns used in filtering conditions.

Example:

SELECT *
FROM events
WHERE toDate(timestamp) = today();

Although this query works, it may prevent ClickHouse from efficiently using its indexing structures.

A better approach is:

SELECT *
FROM events
WHERE timestamp >= today()
  AND timestamp < today() + 1;

This preserves the original column values and enables more effective data skipping.

Why It Matters

Functions can force ClickHouse to evaluate every row before determining whether it matches the filter.


Be Careful with OR Conditions

Queries containing multiple OR conditions can sometimes reduce filtering efficiency.

Example:

SELECT *
FROM events
WHERE country = 'US'
   OR country = 'UK'
   OR country = 'DE';

In many situations, using IN is clearer and may produce more efficient execution plans.

Example:

SELECT *
FROM events
WHERE country IN ('US', 'UK', 'DE');

This approach also improves query readability and maintainability.


Use PREWHERE for Large Tables

One of the unique features of ClickHouse is the PREWHERE clause.

Example:

SELECT *
FROM events
PREWHERE user_id = 12345;

PREWHERE allows ClickHouse to load filtering columns first and postpone reading other columns until after irrelevant rows have been eliminated.

For wide tables containing many columns, this can reduce disk reads and improve performance.

In many cases, ClickHouse automatically moves suitable conditions into PREWHERE, but understanding the feature is still valuable.

Best Use Cases

  • Wide tables with many columns
  • Highly selective filters
  • Queries returning a small subset of rows

Leverage Data Skipping Indexes

For columns that are frequently filtered but not part of the sorting key, data skipping indexes may help.

Example:

INDEX idx_country country TYPE set(100) GRANULARITY 1

Data skipping indexes do not behave like traditional B-tree indexes.

Instead, they store lightweight metadata that helps ClickHouse determine whether specific data blocks can be skipped entirely.

They can be particularly useful for:

  • Country filters
  • Status fields
  • Categories
  • Event types

When used appropriately, they can significantly reduce the amount of scanned data.

Important Note

Data skipping indexes should complement good table design, not replace it.


Avoid Filtering on Highly Random Columns

Columns with highly random values often provide limited opportunities for data skipping.

Example:

WHERE uuid = 'f47ac10b-58cc-4372-a567-0e02b2c3d479'

If the column is not part of the sorting key and lacks an appropriate index, ClickHouse may need to examine a large amount of data.

Whenever possible, design sorting keys around commonly filtered columns.


Monitor Query Performance

ClickHouse provides several tools for understanding query behavior.

Useful system tables include:

  • system.query_log
  • system.parts
  • system.tables

Example:

SELECT
    query,
    read_rows,
    read_bytes,
    query_duration_ms
FROM system.query_log
ORDER BY event_time DESC
LIMIT 10;

Monitoring these metrics helps identify queries that are scanning more data than necessary.

What to Watch

  • Read rows
  • Read bytes
  • Query duration
  • Memory usage
  • Number of scanned parts

Common Filtering Mistakes

1. Filtering Without a Time Range

Avoid:

SELECT *
FROM logs;

Large analytical tables should almost always include meaningful filtering conditions.

2. Ignoring Query Patterns

Designing tables without considering how users will filter data often leads to poor performance.

3. Overusing Data Skipping Indexes

Indexes are helpful, but they should not be viewed as a replacement for proper sorting keys and partitioning strategies.

4. Applying Functions to Indexed Columns

This can limit ClickHouse's ability to skip irrelevant data efficiently.


Best Practices Summary

When filtering data in ClickHouse:

  • Align filters with sorting keys whenever possible.
  • Filter early in the query pipeline.
  • Use time-based filters.
  • Avoid unnecessary functions on filtered columns.
  • Prefer IN over long OR chains.
  • Understand when PREWHERE can help.
  • Consider data skipping indexes for frequently filtered columns.
  • Monitor query performance using system tables.
  • Design tables around actual query patterns.

Final Thoughts

Efficient filtering is one of the most important aspects of query optimization in ClickHouse.

While the database is capable of scanning enormous datasets quickly, the best-performing queries are those that help ClickHouse eliminate unnecessary data before it is read.

By understanding how partitions, sorting keys, PREWHERE, and data skipping indexes work together, you can dramatically reduce scanned rows, improve response times, and build more efficient analytical workloads.

The goal is not simply to write queries that work.

The goal is to write queries that allow ClickHouse to do as little work as possible.

When ClickHouse reads less data, everything gets faster.

Link - https://quantrail-data.com/filtering-data-clickhouse-best-practices/