I'm streaming database change events from MySql database to Kafka using Debezium MySql connector. I need to apply specific transformations to records from some specified tables (but not from the others). Is there a way of doing it with using only Kafka Connect Single Message Transforms (without Kafka Streams or KSQL)? I do not even mind writing a custom SMT. But I cannot find how can I specify to messages from which tables/topics to apply SMT. Thank you.
[UPD] After brief investigation I decided to use KSQL for that. Thanks everyone for answers