From 540b421d0d64694ada596992029e32fbfd0b6e4d Mon Sep 17 00:00:00 2001 From: Yasuo Honda Date: Thu, 20 Aug 2026 09:43:13 +0900 Subject: [PATCH] ticdc: remove awkward directly from Debezium doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "directly ignores" is an overly literal translation of the Chinese source's "直接忽略" (docs-cn#16513) - "directly" reads as a spatial/ routing adverb in English and doesn't collocate naturally with "ignores". Dropping it reads more naturally; the preceding "only supports Row Changed events" already makes the contrast clear. Co-Authored-By: Claude Sonnet 5 --- ticdc/ticdc-debezium.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ticdc/ticdc-debezium.md b/ticdc/ticdc-debezium.md index b9988487b668b..41e4a32e7f59d 100644 --- a/ticdc/ticdc-debezium.md +++ b/ticdc/ticdc-debezium.md @@ -27,7 +27,7 @@ For the new TiCDC architecture, the Debezium protocol supports the following typ
-For the classic TiCDC architecture, the Debezium protocol only supports Row Changed events and directly ignores DDL events and WATERMARK events. A Row changed event represents a data change in a row. When a row changes, the Row Changed event is sent, including relevant information about the row both before and after the change. A WATERMARK event marks the replication progress of a table, indicating that all events earlier than the watermark have been sent to the downstream. +For the classic TiCDC architecture, the Debezium protocol only supports Row Changed events and ignores DDL events and WATERMARK events. A Row changed event represents a data change in a row. When a row changes, the Row Changed event is sent, including relevant information about the row both before and after the change. A WATERMARK event marks the replication progress of a table, indicating that all events earlier than the watermark have been sent to the downstream.