Re: How to set result value Serdes Class in Kafka stream join

2017-11-16 Thread sy.pan
Get it , thank you Damian > 在 2017年11月16日,18:55,Damian Guy 写道: > > Hi, > > You don't need to set the serde until you do another operation that > requires serialization, i.e., if you followed the join with a `to()`, > `groupBy()` etc, you would pass in the serde to that

Re: How to set result value Serdes Class in Kafka stream join

2017-11-16 Thread Damian Guy
Hi, You don't need to set the serde until you do another operation that requires serialization, i.e., if you followed the join with a `to()`, `groupBy()` etc, you would pass in the serde to that operation. Thanks, Damian On Thu, 16 Nov 2017 at 10:53 sy.pan wrote: > Hi,

How to set result value Serdes Class in Kafka stream join

2017-11-16 Thread sy.pan
Hi, all: Recently I have read kafka streams join document(https://docs.confluent.io/current/streams/developer-guide.html#kafka-streams-dsl ). The sample code is pasted below: import