Search code examples
apache-kafkakafka-producer-api

How to list producers writing to a certain kafka topic


How to list producers writing to a certain kafka topic using kafka CLI ?


Solution

  • There is no command line tool available that is able to list all producers for a certain topic.

    This would require that in Kafka there is a central place where all producers and their metadata are being stored which is not the case (as opposed to consumers and their ConsumerGroups).