> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-fix-nav-issues.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# ClickHouse 是否支持实时更新？

> ClickHouse 支持轻量级实时更新

ClickHouse 支持 UPDATE 语句，并且能够以接近 INSERT 操作的速度执行实时更新。

这得益于 [补丁分区片段数据结构](https://clickhouse.com/blog/updates-in-clickhouse-2-sql-style-updates#stage-3-patch-parts--updates-the-clickhouse-way)，它可以快速应用更改，同时不会对 SELECT 性能造成显著影响。

此外，借助 MVCC (多版本并发控制) 和快照隔离，更新还具备 ACID 特性。

<Info>
  轻量级更新最早在 ClickHouse 25.7 版本中引入。
</Info>
