techdocsmith opened a new pull request, #14335:
URL: https://github.com/apache/druid/pull/14335
The `bitnami/kafka:latest` image had `kraft` turned on by default, which did
not work with the existing configurations. Since we have zookeeper anyway,
turned `kraft` off to fall back to existing functionality.
### Description
With kraft enabled, Kafka would exit throwing the following error:
```
kafka-broker | Exception in thread "main"
java.lang.IllegalArgumentException: requirement failed:
controller.listener.names must contain at least one value appearing in the
'listeners' configuration when running the KRaft controller role
...
```
The fix adds the following environment variable to the `kafka` service:
```
- KAFKA_ENABLE_KRAFT=false
```
This PR has:
- [ x] been self-reviewed.
- [ x] been tested in a test Druid cluster.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]