Re: Kafka Streams - not able to see the text in console consumer

2017-09-18 Thread karan alang
Thanks, Vito .. that worked ! On Sun, Sep 17, 2017 at 9:02 PM, 鄭紹志 wrote: > Hi, Karan, > > It looks like you need to add a property 'value.deserializer' to > kafka-console-consumer.sh. > > For example: > $ bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic > kstreams4 --fro

Re: Kafka Streams - not able to see the text in console consumer

2017-09-17 Thread 鄭紹志
Hi, Karan, It looks like you need to add a property 'value.deserializer' to kafka-console-consumer.sh. For example: $ bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic kstreams4 --from-beginning \ --property print.key=true \ --property print.value=true \ --proper

Kafka Streams - not able to see the text in console consumer

2017-09-17 Thread karan alang
Hello All - i've a basic word count Kafka streams code, which reads data from the input topic, splits the data (per the separator) and outputs the data into the output topic. I've a console producer, which is putting data into the input topic (kstreams3), and a console consumer which is reading th