I've read http://debezium.io/docs/connectors/mysql/ but I could not find any info about whether debezium can be configured so that changes from 2 (or more) tables could be written to the same, single kafka topic? It seems to me that it is always 1 table -> 1 topic.
相关问题
- Delete Messages from a Topic in Apache Kafka
- sqlyog export query result as csv
- NOT DISTINCT query in mySQL
- MySQL: conduct a basic search
- Why sometimes there is one of more gap(s) in the v
Yes, use Single Message Transforms, per the link you identified. You can use regular expressions (regex) to map the tables to the topic required. Both
io.debezium.transforms.ByLogicalTableRouter
ororg.apache.kafka.connect.transforms.RegexRouter
should do the trick. There's an example of the latter in this post here: