Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion docs/content.zh/docs/faq/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,8 @@ restart-strategy.fixed-delay.delay= 30s

### Q15: 在 DataStream API中构建MySQL CDC源时如何配置tableList选项?

tableList选项要求表名使用数据库名,而不是DataStream API中的表名。对于MySQL CDC源代码,tableList选项值应该类似于‘my_db.my_table’。
1. tableList选项要求表名使用数据库名,而不是DataStream API中的表名。对于MySQL CDC源代码,tableList选项值应该类似于‘my_db.my_table’。
2. 如果要同步排除products和orders表之外的整个my_db库,tableList选项值应该类似于‘my_db.(?!products|orders).*’。

## Postgres CDC FAQ

Expand Down
3 changes: 2 additions & 1 deletion docs/content/docs/faq/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,8 @@ The reason for this problem is that the reading of the full volume phase of the

### Q15: How to config `tableList` option when build MySQL CDC source in DataStream API?

The `tableList` option requires table name with database name rather than table name in DataStream API. For MySQL CDC source, the `tableList` option value should like ‘my_db.my_table’.
1. The `tableList` option requires table name with database name rather than table name in DataStream API. For MySQL CDC source, the `tableList` option value should like ‘my_db.my_table’.
2. If you need to synchronize the whole mydb database excluding the products and orders tables, the `tableList` option value should like 'my_db.(?!products|orders).*'.

## Postgres CDC FAQ

Expand Down