Re: which producer should be used

2015-09-27 Thread Sharninder
Hi Gwen, We were using kafka.javaapi.producer.Producer so far and I'm trying to move the code to use KafkaProducer now but it seems the send api for producer takes Seq as arguement instead of ProducerRecord as the documentation for 0.8.2 says: http://kafka.apache.org/082/javadoc/org/apache/kafka/

Re: which producer should be used

2015-09-27 Thread Gwen Shapira
KafkaProducer is the most current and full-featured one, and it should be used. The other producers will be deprecated in a release or two, so I recommend not to use them. On Sun, Sep 27, 2015 at 8:40 PM, Li Tao wrote: > Hi there, > I noticed that there are several producers our there: > > **

which producer should be used

2015-09-27 Thread Li Tao
Hi there, I noticed that there are several producers our there: ** **org.apache.kafka.clients.producer.KafkaProducer* ** **kafka.javaapi.producer.Producer* What's the difference between them? Which one should be used?