Reputation: 482
How to list producers writing to a certain kafka topic using kafka CLI ?
Upvotes: 3
Views: 3097
Reputation: 18525
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).
Upvotes: 1