Skip to content

Commit 3c1f4f7

Browse files
author
github-actions
committed
update MD by dispatch event pingcap/docs master
1 parent ea09949 commit 3c1f4f7

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

markdown-pages/en/tidb/master/ticdc/ticdc-data-replication-capabilities.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,17 @@ TiCDC supports the following types of upstream data changes:
4848
- TiCDC only verifies the integrity of upstream data changes. It does not validate whether the changes conform to upstream or downstream constraints. If the data violates downstream constraints, TiCDC will return an error when writing to the downstream.
4949

5050
For example: When a changefeed is configured to filter out all DDL events, if the upstream executes a `DROP COLUMN` operation but continues to write `INSERT` statements involving that column, TiCDC will fail to replicate these DML changes to the downstream because of table schema mismatches.
51+
52+
- For the TiCDC [classic architecture](/ticdc/ticdc-classic-architecture.md), when the number of tables replicated by a single TiCDC cluster exceeds the following recommended values, TiCDC might not work stably:
53+
54+
| TiCDC version | Recommended number of tables to be replicated |
55+
|---|:---:|
56+
| v5.4.0 - v6.4.x | 2000 |
57+
| v6.5.x - v7.4.x | 4000 |
58+
| v7.5.x - v8.5.x | 40000 |
59+
60+
> **Note:**
61+
>
62+
> When replicating partitioned tables, TiCDC treats each partition as a separate table. Therefore, the partition count is included when TiCDC calculates the total number of tables to be replicated.
63+
64+
If the number of tables to be replicated exceeds the preceding recommended values, it is recommended to use the [TiCDC new architecture](/ticdc/ticdc-architecture.md). The new architecture supports replicating more than one million tables per changefeed, making it suitable for large-scale replication scenarios.

0 commit comments

Comments
 (0)