Re: Avro messages from Kafka topic

2015-10-20 Thread Rakesh Vidyadharan
We publish messages to kafka in Thrift format. We use the old simple consumer and just retrieve the message bytes, transform back to object model using Thrift API and do whatever our application needs with it. On 20/10/2015 11:08, "Buntu Dev" wrote: >I got a Kafka topic

Avro messages from Kafka topic

2015-10-20 Thread Buntu Dev
I got a Kafka topic with messages in Avro format. I would like to display the live stream of these events in a web app. Are there any streaming consumer clients to convert the Avro messages into some readable format, if not any insight into how I can achieve this would be very helpful? Thanks!