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
Is there a way to get the information about the number of unconsumed messages in each partition? I think the metadata information obtained from Kafka does not have this info. What does the "ISR" element in metadata structure mean?
Thanks,
Shridhar
The text was updated successfully, but these errors were encountered:
To get the number of unconsumed messages depends on how your consumer is storing offsets... you have to fetch "most recently consumed offset" from that storage location (often zookeeper), and then you can ask kafka for the most recently produced offset (Client.GetOffset). The difference is how many unconsumed messages there are.
Hi,
Is there a way to get the information about the number of unconsumed messages in each partition? I think the metadata information obtained from Kafka does not have this info. What does the "ISR" element in metadata structure mean?
Thanks,
Shridhar
The text was updated successfully, but these errors were encountered: