You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| do_dbs | databases to be synced | db_1,db_2*,\`db*&#\`| - |
38
-
| ignore_dbs | databases to be filtered | db_1,db_2*,\`db*&#\`| - |
39
-
| do_tbs | tables to be synced | db_1.tb_1,db_2*.tb_2*,\`db*&#\`.\`tb*&#\`| - |
40
-
| ignore_tbs | tables to be filtered | db_1.tb_1,db_2*.tb_2*,\`db*&#\`.\`tb*&#\`| - |
37
+
| do_dbs | databases to be synced, takes union with do_tbs| db_1,db_2*,\`db*&#\`| - |
38
+
| ignore_dbs | databases to be filtered, takes union with ignore_tbs| db_1,db_2*,\`db*&#\`| - |
39
+
| do_tbs | tables to be synced, takes union with do_dbs| db_1.tb_1,db_2*.tb_2*,\`db*&#\`.\`tb*&#\`| - |
40
+
| ignore_tbs | tables to be filtered, takes union with ignore_dbs| db_1.tb_1,db_2*.tb_2*,\`db*&#\`.\`tb*&#\`| - |
41
41
| ignore_cols | table columns to be filtered | json:[{"db":"db_1","tb":"tb_1","ignore_cols":["f_2","f_3"]},{"db":"db_2","tb":"tb_2","ignore_cols":["f_3"]}]| - |
42
42
| do_events | events to be synced | insert,update,delete | - |
43
43
| do_ddls | ddls to be synced, for mysql cdc tasks | create_database,drop_database,alter_database,create_table,drop_table,truncate_table,rename_table,alter_table,create_index,drop_index | - |
- If a table matches both **ignore** configs and **do** configs, the table will be filtered.
61
+
- If both do_tbs and do_dbs are configured, **the filter is the union of both**. If both ignore_tbs and ignore_dbs are configured, **the filter is the union of both**.
0 commit comments