Open teckays opened 7 years ago
would like this as well ...
Hi. This is actually possible now, please have a look here: https://github.com/Landoop/fast-data-dev#configure-kafka-components
As an example, to set auto.create.topics.enable=true
(though this is the default setting anyway), you would add the env var:
KAFKA_AUTO_CREATE_TOPICS_ENABLE=true
Keep in mind this works only with the latest versions of fast-data-dev (tags latest
, 1.0
, 1.0.1
, 1.1
, 1.1.0
). The latest
tag is the same as 1.0
and 1.0.1
, the current stable version.
For example I would like my topics to be created automatically, therefore, I'd like to somehow configure
auto.create.topics.enable=true
. Based on the documentation, it doesn't seem like there's a way to pass in this option as an environment variable, therefore I have tried the following:Then add the
auto.create.topics.enable=true
in theserver.properties
file.However, the above causes some weird behaviour on the Kafka Broker, here are the logs:
which obviously repeats over time when trying to restart it.
Plus, when I go to http://localhost:3030/kafka-topics-ui/, I see the following:
Thank you.