Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guides/developer/mutations.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).