Re: API to query cluster metadata on-demand

2015-09-03 Thread Todd Palino
What Gwen said :) We developed a python web service internally called Menagerie that provides this functionality for both Kafka and Zookeeper. We use it to drive a web dashboard for stats, our (old style) lag checking, and some other CLI tools. Unfortunately it ties into too much internal LinkedIn

Re: API to query cluster metadata on-demand

2015-09-03 Thread Andrew Otto
If you don’t mind doing it with a C CLI: https://github.com/edenhill/kafkacat $ kafkacat -L -b mybroker But, uhhh, you probably want a something in the Java API. :) > On Sep 3, 2015, at 13:58, Gwen Shapira wrote: > > Ah, I wish. > > We are working on it :) > > On Thu, Sep 3, 2015 at 9:10

Re: API to query cluster metadata on-demand

2015-09-03 Thread Gwen Shapira
Ah, I wish. We are working on it :) On Thu, Sep 3, 2015 at 9:10 AM, Simon Cooper < simon.coo...@featurespace.co.uk> wrote: > Is there a basic interface in the new client APIs to get the list of > topics on a cluster, and get information on the topics (offsets, sizes, > etc), without having to de

API to query cluster metadata on-demand

2015-09-03 Thread Simon Cooper
Is there a basic interface in the new client APIs to get the list of topics on a cluster, and get information on the topics (offsets, sizes, etc), without having to deal with a producer or consumer? I just want a basic synchronous API to query the metadata as-is. Does this exist in some form? T