usubscribe

2019-04-29 Thread Amrit Jangid

Re: Kafka stream specify key for message

2018-06-13 Thread Amrit Jangid
.to() method is called on KStream, like KStream.to(outputTopic, Produced ), See sample code below- KStream inputStream = builder.stream("input-topic"); KStream outputStream = inputStream.map(new KeyValueMapper> { KeyValue apply(String key, String value) { return new

Re: Kafka mirror maker help

2018-04-26 Thread Amrit Jangid
You should share related info, such source-destination Kafka versions, sample Config or error if any. FYI, Go through https://kafka.apache.org/documentation/#basic_ops_mirror_maker

Re: Need help in kafka hdfs connector

2018-03-29 Thread Amrit Jangid
Try this : https://github.com/pinterest/secor On Thu, Mar 29, 2018 at 2:36 PM, Santosh Kumar J P < santoshkumar...@gmail.com> wrote: > Hi, > > Do we have any other Kafka HDFS connectors implementation other than > Confluent HDFS connector. > > Thank you, > Regards, > Santosh >

Kafka topic monitoring

2017-10-23 Thread Amrit Jangid
Hi All, I'm looking for a open source tool which can help in monitoring topic level, partition level, consumer group level historycal data. use case: 1. Finding when consumer lag started on which partition on yesterdays data. 2. messages in-rate in each partition.

Re: Viewing timestamps with console consumer (0.10.1.1)

2017-01-30 Thread Amrit Jangid
Hi Meghana, Please Try : kafka-console-consumer.sh --property print.timestamp=true - Amrit On Mon, Jan 30, 2017 at 10:20 PM, Meghana Narasimhan < mnarasim...@bandwidth.com> wrote: > Hi, > Is there a way to view message timestamp using console consumer ? > > Thanks, > Meghana >

Error in kafka-stream example

2016-12-22 Thread Amrit Jangid
Hi All, I want to try out kafka stream example using this example : https://github.com/confluentinc/examples/blob/3.1.x/kafka-streams/src/main/scala/io/confluent/examples/streams/MapFunctionScalaExample.scala Getting exception while compiling code : *[error] val uppercasedWithMapValues: