From 73bed8c2de094b3312d66675c43dd8e9af7461ef Mon Sep 17 00:00:00 2001 From: Dominic Tran Date: Wed, 12 Nov 2025 16:19:32 -0600 Subject: [PATCH] fixing inaccuracy by using the right setting --- docs/guides/developer/mutations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/developer/mutations.md b/docs/guides/developer/mutations.md index b30b2d16107..565da16cb06 100644 --- a/docs/guides/developer/mutations.md +++ b/docs/guides/developer/mutations.md @@ -104,4 +104,4 @@ DELETE FROM hits WHERE Title LIKE '%hello%'; A few notes about lightweight deletes: - This feature is only available for the `MergeTree` table engine family. -- Lightweight deletes are asynchronous by default. Set `mutations_sync` equal to 1 to wait for one replica to process the statement, and set `mutations_sync` to 2 to wait for all replicas. +- Lightweight deletes are synchronous by default, waiting for all replicas to process the delete. The behavior is controlled by the [`lightweight_deletes_sync` setting](/operations/settings/settings#lightweight_deletes_sync).