I set up AWS MSK, but it does not have a GUI to view the server configuration. I tried using the kafka-configs.sh, but it didn't output anything useful.
./kafka-configs.sh --bootstrap-server {HOST} --entity-default --entity-type brokers --entity-name 1 --describe
Output:
Configs for broker 1 are:
I tried doing this on my local kafka and am getting the same value. What does this mean?
The Kafka configuration files are located at the /opt/bitnami/kafka/config/ directory.
By using the property file the Kafka makes its configuration. It can be supplied either from a file or programmatically. It is either taken from a default file or else also can be self-programmed.
you can use kafka-manager, an open-source tool powered by yahoo. Show activity on this post. This will list all of the brokers with their id and the beginning offset.
Yes this is a known behavior: https://issues.apache.org/jira/browse/KAFKA-7720
Currently this tool only shows configurations that have been dynamically overridden.
To see all broker configs, you have 2 options:
AdminClient.describeConfigs()
API Update: This issue is being addressed by KIP-524 which is currently targetted for Kafka 2.5
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With