Hi Magnus, I am referring to the C++ client for 0.8 libkafka: https://github.com/adobe-research/libkafka
My understanding is, the clients in other languages(not java) only support the API requires in https://cwiki.apache.org/confluence/display/KAFKA/A+Guide+To+The+Kafka+Protocol . Am I right? And will this protocol be updated in the future? Thanks! Cheers, Churu On Mar 21, 2014, at 6:54 PM, Magnus Edenhill <mag...@edenhill.se> wrote: > Hi Churu, > > there are at least three C++ client implementations: > * for 0.7 :the older kafka-cpp for apache kafka v0.7 > * for 0.8: libkafka https://github.com/adobe-research/libkafka > * for 0.8: librdkafka: https://github.com/edenhill/librdkafka > > Which one are you referring to? > > Regards, > Magnus > > > 2014-03-22 0:56 GMT+07:00 Churu Tang <ct...@rubiconproject.com>: > >> Hi, >> >> In java you provide some nice API for high-level consumer as well as >> simple consumer. However, in C++, I only see 4 kinds of requests(meta, >> produce, offset, fetch). Will C++ also include those high-level and simple >> consumer API as well in the future? >> >> A consumer will do lots of registrations in zookeeper since join. With >> current C++ API, will the registration done at the broker side when any of >> 4 kinds of requests(meta, produce, offset, fetch) is received? >> >> Thanks for your time! >> >> Cheers, >> Churu