Search code examples
apache-kafkaconfigapache-zookeeper

get current config in kafka


I was trying to get the config for one of the kafka clusters we have. After doing a config change through puppet, I want to know if kafka has reloaded the config, or if we need to restart the service for that.

I have tried with ./kafka-configs.sh --describe --zookeeper my-zookeeper:2181 --entity-type brokers but I only have empty output.

I have also tried to find for the config browsing inside the zookeepers but i have found nothing.

Is there any way to retrieve which config is being used?


Solution

  • as suggested @LijuJohn i found the config in the server.log file. Thanks a lot!!