I would like to change the topic names using a Debezium connector, as I would like the topics not to be named with the default name "server.schema.table".
You can use various Kafka Connect transforms for setting the topic name.
InsertField
to set static topic nameExtractField
+ ExtractTopic
for using some property of the recordRegexRouter
for modifying the topic name based on a pattern ; for example, removing server.schema.
prefix