Skip to content

Commit 9271db2

Browse files
author
github-actions
committed
update MD by dispatch event pingcap/docs release-8.1
1 parent 2f14bb1 commit 9271db2

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

markdown-pages/en/tidb/release-8.1/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](https://docs.pingcap.com/tidb/stable/ticdc-classic-architecture/), 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](https://docs.pingcap.com/tidb/stable/ticdc-architecture/). The new architecture supports replicating more than one million tables per changefeed, making it suitable for large-scale replication scenarios.

markdown-pages/en/tidb/release-8.1/tidb-upgrade-migration-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ Additionally, you can scale out the new cluster to handle expected workloads and
222222
- After setting the old cluster to read-only mode, retrieve the current `up-tso`:
223223
224224
```sql
225-
SELECT tidb_current_ts();
225+
BEGIN; SELECT TIDB_CURRENT_TSO(); ROLLBACK;
226226
```
227227
228228
- Monitor the Changefeed `checkpointTs` to confirm it has surpassed `up-tso`, indicating that TiCDC has completed data replication.
@@ -268,7 +268,7 @@ Additionally, you can scale out the new cluster to handle expected workloads and
268268
2. Record the current TSO of the new cluster:
269269
270270
```sql
271-
SELECT tidb_current_ts();
271+
BEGIN; SELECT TIDB_CURRENT_TSO(); ROLLBACK;
272272
```
273273
274274
3. Configure the reverse replication link and ensure the Changefeed task is running properly:

0 commit comments

Comments
 (0)