Re: Kafka Streams debugging with "no fluent" API choice

2017-08-01 Thread Damian Guy
e Advisor > > Twitter : @ppatierno<http://twitter.com/ppatierno> > Linkedin : paolopatierno<http://it.linkedin.com/in/paolopatierno> > Blog : DevExperience<http://paolopatierno.wordpress.com/> > > > ________ > From: Damian Guy > Sent: Tuesd

Re: Kafka Streams debugging with "no fluent" API choice

2017-08-01 Thread Paolo Patierno
From: Damian Guy Sent: Tuesday, August 1, 2017 2:11 PM To: dev@kafka.apache.org Subject: Re: Kafka Streams debugging with "no fluent" API choice Hi Paolo, The change would require a KIP as it is a public API change. I don't see any harm in making the

Re: Kafka Streams debugging with "no fluent" API choice

2017-08-01 Thread Damian Guy
<http://paolopatierno.wordpress.com/> > > > ____________________ > From: Damian Guy > Sent: Tuesday, August 1, 2017 12:11 PM > To: dev@kafka.apache.org > Subject: Re: Kafka Streams debugging with "no fluent" API choice > > I don't know s

Re: Kafka Streams debugging with "no fluent" API choice

2017-08-01 Thread Paolo Patierno
ev@kafka.apache.org Subject: Re: Kafka Streams debugging with "no fluent" API choice I don't know specifically why this is removed, however if you want to get the same functionality you can use peek, i.e: stream.map(...).peek(...).filter(..) You can log the key values out in t

Re: Kafka Streams debugging with "no fluent" API choice

2017-08-01 Thread Damian Guy
I don't know specifically why this is removed, however if you want to get the same functionality you can use peek, i.e: stream.map(...).peek(...).filter(..) You can log the key values out in the peek call. On Tue, 1 Aug 2017 at 11:48 Paolo Patierno wrote: > Hi guys, > > > I was thinking about