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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
J
Java Code Geeks
Jina AI
Jina AI
罗磊的独立博客
宝玉的分享
宝玉的分享
S
SegmentFault 最新的问题
D
DataBreaches.Net
博客园 - 叶小钗
腾讯CDC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Last Week in AI
Last Week in AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Google DeepMind News
Google DeepMind News
阮一峰的网络日志
阮一峰的网络日志
B
Blog
V
Visual Studio Blog
雷峰网
雷峰网
博客园 - 【当耐特】
Apple Machine Learning Research
Apple Machine Learning Research
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

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
ClickHouse ReplacingMergeTree - Why Your Row Count Does N...
Ankit malik · 2026-05-03 · via DEV Community

Why ClickHouse Silently Drops Your Rows

I was running a batch test and noticed something strange. I inserted 3 rows and got back 2 when I ran SELECT count(). No error, no warning. ClickHouse just quietly dropped one.

Turns out this is not a bug. It is the table engine doing exactly what it is designed to do.


The Engine — ReplacingMergeTree

When you create a table in ClickHouse, you pick an engine. The engine decides how data is stored and whether duplicates are kept or removed.

ReplacingMergeTree is the engine that removes duplicates. You define an ORDER BY key and a version column. If two rows share the same ORDER BY key, only one survives — the one with the highest version value.

Here is the table we will use for all the examples below:

CREATE TABLE test_events
(
    client_id   UInt32,
    username    String,
    event_id    String,
    event_name  String,
    created_at  DateTime64(3, 'UTC')
)
ENGINE = ReplacingMergeTree(created_at)
ORDER BY (client_id, username, event_id);

Enter fullscreen mode Exit fullscreen mode

The dedup key is (client_id, username, event_id). The version column is created_at. When two rows have the same key, the one with the latest created_at wins.


Behaviour 1 — Duplicate in the Same INSERT

Insert 3 rows where row 1 and row 2 have the same key:

INSERT INTO test_events VALUES
(1, 'alice', 'evt_001', 'login',    '2024-01-01 10:00:00.000'),
(1, 'alice', 'evt_001', 'login',    '2024-01-01 10:00:00.000'),
(1, 'alice', 'evt_002', 'purchase', '2024-01-01 10:05:00.000');

Enter fullscreen mode Exit fullscreen mode

Now check what landed in the table:

SELECT * FROM test_events ORDER BY event_id;

Enter fullscreen mode Exit fullscreen mode

You will see 2 rows. The duplicate evt_001 was dropped immediately. When two rows with the same key arrive in the same INSERT block, ClickHouse resolves them right there.

2 rows data in CH db

Verify by checking the data parts:

SELECT name, rows, active
FROM system.parts
WHERE database = 'default'
  AND table = 'test_events'
  AND active = 1;

Enter fullscreen mode Exit fullscreen mode

One active part, 2 rows.

One active part, 2 rows


Behaviour 2 — Duplicate Across Two Separate INSERTs

Now insert evt_002 again in a new query:

INSERT INTO test_events VALUES
(1, 'alice', 'evt_002', 'purchase', '2024-01-01 10:05:00.000');

Enter fullscreen mode Exit fullscreen mode

Behaviour 2 — 3 rows will be visible

Check the parts:

SELECT name, rows, active
FROM system.parts
WHERE database = 'default'
  AND table = 'test_events'
  AND active = 1;

Enter fullscreen mode Exit fullscreen mode

Behaviour 2 — Duplicate Across Two Separate INSERTs

This time you see 2 active parts. The first has 2 rows. The second has 1 row. The duplicate evt_002 is sitting there in its own part.

This is the important thing to understand. ClickHouse does not deduplicate at insert time across separate inserts. It only deduplicates when it merges data parts together. Merges happen in the background automatically, but you have no control over when.

To force it right now:

OPTIMIZE TABLE test_events FINAL;

Enter fullscreen mode Exit fullscreen mode

Check parts again:

SELECT name, rows, active
FROM system.parts
WHERE database = 'default'
  AND table = 'test_events'
  AND active = 1;

Enter fullscreen mode Exit fullscreen mode

Back to 1 active part with 2 rows. The duplicate is gone.

After Optimization of Table


Behaviour 3 — Updating a Row the ClickHouse Way

You cannot do UPDATE in ClickHouse the same way you do in Postgres. Instead you insert a new version of the row with a later timestamp and let ReplacingMergeTree handle it.

Insert evt_001 again with corrected data and a newer created_at:

INSERT INTO test_events VALUES
(1, 'alice', 'evt_001', 'login_success', '2024-01-01 12:00:00.000');

Enter fullscreen mode Exit fullscreen mode

Force merge and check:

OPTIMIZE TABLE test_events FINAL;

SELECT * FROM test_events ORDER BY event_id;

Enter fullscreen mode Exit fullscreen mode

event_id event_name created_at
evt_001 login_success 2024-01-01 12:00:00
evt_002 purchase 2024-01-01 10:05:00

The original login row is gone. login_success won because its created_at is higher. This is how updates work in ClickHouse.

Final result


Reading Clean Data Without Running OPTIMIZE

If you do not want to wait for a background merge, add FINAL to your SELECT. It applies the dedup logic at read time.

SELECT * FROM test_events FINAL ORDER BY event_id;

Enter fullscreen mode Exit fullscreen mode

This always returns the correct deduplicated result regardless of whether a merge has happened or not. Use this anywhere accurate data matters. Don't use this query in production because this very expensive query.


Bonus — The Second Dedup Layer

While testing this, you will notice something else. Run the same INSERT query twice:

INSERT INTO test_events VALUES
(1, 'alice', 'evt_003', 'checkout', '2024-01-01 13:00:00.000');

Enter fullscreen mode Exit fullscreen mode

SELECT count() FROM test_events;

Enter fullscreen mode Exit fullscreen mode

The first run adds 1 row. The second run changes nothing. No error, just silence.

This is not ReplacingMergeTree. This is INSERT block deduplication — a completely separate layer. ClickHouse tracks the checksum of every INSERT block it receives. If it sees the exact same block again it skips the write entirely.

Change even one value and it goes through again:

INSERT INTO test_events VALUES
(1, 'alice', 'evt_003', 'checkout', '2024-01-01 13:00:00.001');

Enter fullscreen mode Exit fullscreen mode

Different checksum, different block — new row is added.

So there are two separate reasons your row count might not be what you expect:

  • INSERT block dedup — exact same INSERT repeated, ClickHouse ignores it
  • ReplacingMergeTree — same logical key across different inserts, ClickHouse keeps only the latest version after a merge

Summary

Situation What happens
Duplicate in the same INSERT Dropped immediately
Same key inserted again separately Both parts exist until a merge
Exact same INSERT run again Blocked by INSERT block dedup
Background merge runs Latest version survives, duplicates dropped
SELECT ... FINAL Always reads deduplicated data
OPTIMIZE TABLE FINAL Forces merge right now

Cleanup

DROP TABLE test_events;

Enter fullscreen mode Exit fullscreen mode