[minor][docs] Improve the answer of MySQL CDC FAQ docs

This closes  #3337.
pull/3351/head
PONYLEE 8 months ago committed by GitHub
parent d386c7c1c2
commit b33e6a047d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -204,7 +204,8 @@ restart-strategy.fixed-delay.delay= 30s
### Q15: 在 DataStream API中构建MySQL CDC源时如何配置tableList选项 ### 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.(?!productsorders).*’。
## Postgres CDC FAQ ## Postgres CDC FAQ

@ -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? ### 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.(?!productsorders).*'.
## Postgres CDC FAQ ## Postgres CDC FAQ

Loading…
Cancel
Save