Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ticdc: update doc about ddl white list #19151

Open
wants to merge 30 commits into
base: master
Choose a base branch
from
Open
Changes from 9 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
5d5672d
Update ticdc-ddl.md
wk989898 Nov 22, 2024
ef5900f
Update ticdc-ddl.md
wk989898 Nov 22, 2024
410e8ef
Update ticdc-ddl.md
wk989898 Nov 22, 2024
194b5a9
Update ticdc-ddl.md
wk989898 Nov 22, 2024
80878e9
Update ticdc-ddl.md
wk989898 Nov 22, 2024
a68b3ca
Update ticdc/ticdc-ddl.md
wk989898 Nov 22, 2024
2d06b0a
Update ticdc-ddl.md
wk989898 Nov 22, 2024
bec363d
Update ticdc-ddl.md
wk989898 Nov 22, 2024
9b2b424
Update ticdc/ticdc-ddl.md
flowbehappy Nov 22, 2024
aee21d5
Update ticdc/ticdc-ddl.md
flowbehappy Nov 22, 2024
3f8b8f1
Apply suggestions from code review
flowbehappy Nov 22, 2024
58088ab
Update ticdc-ddl.md
wk989898 Nov 22, 2024
1b445ce
Update ticdc-ddl.md
wk989898 Nov 22, 2024
a727954
Update ticdc-ddl.md
wk989898 Nov 25, 2024
5baa355
Update ticdc-ddl.md
wk989898 Nov 25, 2024
cc34fb6
Update ticdc-ddl.md
wk989898 Nov 25, 2024
526af49
draft
wk989898 Nov 26, 2024
f63c207
Update ticdc-ddl.md
wk989898 Nov 26, 2024
bb06d3b
Update ticdc-overview.md
wk989898 Dec 4, 2024
8a1372b
Update ticdc-changefeed-config.md
wk989898 Dec 4, 2024
844a48a
Update ticdc-ddl.md
wk989898 Dec 4, 2024
5a899ac
Update ticdc-changefeed-config.md
wk989898 Dec 4, 2024
0705d35
Update ticdc-overview.md
wk989898 Dec 4, 2024
5a33a4e
Update ticdc-ddl.md
wk989898 Dec 4, 2024
5f648e7
Update ticdc-ddl.md
wk989898 Dec 4, 2024
1f28eaa
Update ticdc-ddl.md
wk989898 Dec 5, 2024
e5b1948
Update ticdc-ddl.md
wk989898 Dec 5, 2024
cf8e1fb
Update ticdc-ddl.md
wk989898 Dec 5, 2024
8c95482
Update ticdc-ddl.md
wk989898 Dec 5, 2024
3e0d91d
Update ticdc-overview.md
wk989898 Dec 5, 2024
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
8 changes: 6 additions & 2 deletions ticdc/ticdc-ddl.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ summary: 了解 TiCDC 支持同步的 DDL 和一些特殊情况
- add column
- drop column
- create index / add index
- drop index
- drop index [*注意]
flowbehappy marked this conversation as resolved.
Show resolved Hide resolved
- truncate table
- modify column
- rename table
Expand All @@ -36,14 +36,18 @@ summary: 了解 TiCDC 支持同步的 DDL 和一些特殊情况
- alter database character set
- recover table
- add primary key
- drop primary key
- drop primary key [*注意]
flowbehappy marked this conversation as resolved.
Show resolved Hide resolved
- rebase auto id
- alter table index visibility
- exchange partition
- reorganize partition
- alter table ttl
- alter table remove ttl

> ** *注意:**
flowbehappy marked this conversation as resolved.
Show resolved Hide resolved
>
> - 删除[有效索引](/ticdc/ticdc-overview.md#%E6%9C%80%E4%BD%B3%E5%AE%9E%E8%B7%B5)的 DDL (*号)可能会导致后续数据同步失败
wk989898 marked this conversation as resolved.
Show resolved Hide resolved

## DDL 同步注意事项

### 创建和添加索引 DDL 的异步执行
Expand Down
Loading