Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

kafka producer using Rest API

We are trying to build a data-torrent application using kafka as a source that will consume messages from web UI using REST. Can someone provide a good documentation or some steps how to setup kafka produce using java REST API ?

Thanks

like image 445
Jaspal Singh Avatar asked Sep 23 '16 19:09

Jaspal Singh


Video Answer


1 Answers

Check out kafka-rest.

It will let you produce messages to a Kafka topic with a REST API in JSON or Avro. It is in Java and you may be able to use it out-of-the-box if you don't have special requirements.

like image 193
xli Avatar answered Sep 28 '22 15:09

xli