You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similar to the behavior of list_consumer_groups in KafkaAdminClient, adding a new method that returns the list of topics with the corresponding consumers would be a good feature.
Suggested Solution
This method could be implemented using the KafkaAdminClient class.
Description
Similar to the behavior of
list_consumer_groups
inKafkaAdminClient
, adding a new method that returns the list of topics with the corresponding consumers would be a good feature.Suggested Solution
This method could be implemented using the KafkaAdminClient class.
[('topic_1_test', ['consumer_test_1', 'consumer_test_2']), ('topic_2_test', ['consumer_test_3', 'consumer_test_4'])]
Alternative
Inside the Kafka Consumer. A similar method can work for a specific topic, which receives a topic as a parameter and returns the consumer list.
['consumer_test_1', 'consumer_test_2']
The text was updated successfully, but these errors were encountered: