Re: mixing assign and subscribe for a group

2019-08-22 Thread Ryanne Dolan
Shailesh, the users list may be a better place for this question. Assign() and subscribe() cannot be used on the same Consumer. Moreover, an assign()'d Consumer is not really a member of a group. You should use AdminClient.listConsumerGroupOffsets() for this purpose. Ryanne On Thu, Aug 22, 2019

mixing assign and subscribe for a group

2019-08-22 Thread Ranjan, Shailesh (Contractor - CB - Front Office L, Group IT)
Classification: Public Hi All, We have a kafka cluster where we are using consumer.subscribe() for a group id. We also are trying to write a simple monitoring tool running as a separate instance on a different host than the consumers for checking the consumer offsets and for that we have used