【概述】 场景 + 问题概述
ticdc 推送数据到下游kafka不能过滤DDL。
ticdc changefeed.toml
问题描述:
执行以下语句,导致全表的数据都会推动至kafka topic
alter table product_asin_event modify item_height
DECIMAL (27, 15) UNSIGNED NOT NULL;
alter table product_asin_event modify item_length
DECIMAL ( 27, 15 ) UNSIGNED NOT NULL;
alter table product_asin_event modify item_width
DECIMAL ( 27, 15 ) UNSIGNED NOT NULL;
alter table product_asin_event modify item_weight
DECIMAL ( 27, 15 ) UNSIGNED NOT NULL;
alter table product_asin_event modify package_height
DECIMAL ( 27, 15 ) UNSIGNED NOT NULL;
alter table product_asin_event modify package_length
DECIMAL ( 27, 15 ) UNSIGNED NOT NULL;
alter table product_asin_event modify package_width
DECIMAL ( 27, 15 ) UNSIGNED NOT NULL;
alter table product_asin_event modify package_weight
DECIMAL ( 27, 15 ) UNSIGNED NOT NULL;
请问怎么避免全表所有行的数据推送下去
【TiDB 版本】
tidb v5.4.0
ticdc v5.4.0