user27816779
user27816779

Reputation: 1

Debezium and Kafka Connect. Track changes of specicfic rows selected by SQL

Is it possible to track changes only on table subset? For example: we have FK column 'some_fk_id' and we want debezium to track changes only for rows according to such query: select * from some_table where some_fk_id not in (select some_fk_id from some_table_2 where some_field <> 'some_value')

I read about transforms.filter, but it does not work with SQL https://debezium.io/documentation/reference/stable/transformations/filtering.html

Upvotes: 0

Views: 44

Answers (0)

Related Questions