jackdaw

https://github.com/FundingCircle/jackdaw
dbernal 2018-12-07T16:25:19.001100Z

@creese The round trip worked using the producer and subscribe-consumer functions but the KStreams API wasn't able to read from the topic when using the same serde. I'm still digging through it to figure out what might be the issue

arrdem 2018-12-07T18:49:01.001300Z

that’s extremely strange

2018-12-07T18:55:10.001400Z

Can you push some code to a throw-away repo that exhibits this behavior? I’d like to get to the bottom of it.

dbernal 2018-12-07T21:55:40.001900Z

@creese I realized what was wrong with it. I just realized the to function also requires to pass in a key-serde and value-serde and that's what was causing the serialization issues. I just needed to specify an Avro serde for these. Sorry, it's my unfamiliarity with KStreams and the framework that caused the issue here. Although, I do wonder if there's a better way to represent this issue in the exception that was being thrown. Thanks for all the help!

2018-12-07T23:02:50.002100Z

Glad you were able to work it out. Feel free to create a PR or issue to address.