Good morning,
How can Kafka Connect be prevented to create the default connect topics (config, offset and status) when they do not exist?
There is the broker auto.create.topic.enable (set to false) setting, but they get created regardless.
Is there a connect config option to prevent this?
From the documentation:
==
Earlier versions of Kafka Connect required you to manually create these topics, but now Kafka Connect can do this automatically when it starts up. You can control the names, replication factor, and number of partitions for these topics in the Kafka Connect distributed worker configuration, and all topics are created with compaction cleanup policy.
You may still want to manually create these Kafka topics before starting Kafka Connect if, for example, your broker may be configured to not allow clients such as Kafka Connect to create topics, or you require other advanced topic-specific settings that are not set by Kafka Connect and that are different than the broker’s auto-created topic settings.
===
Kind regards,
Francis