Re: Side Outputs from RichAsyncFunction

2020-02-20 Thread Chesnay Schepler
I don't think this is possible. At the very least you should be able to workaround this by having your AsyncFunction return an Either, and having a subsequent ProcessFunction do the side-output business. On 19/02/2020 22:25, KristoffSC wrote: Hi, any thoughts about this one? Regards, Krzysz

Re: Side Outputs from RichAsyncFunction

2020-02-19 Thread KristoffSC
Hi, any thoughts about this one? Regards, Krzysztof -- Sent from: http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/

Side Outputs from RichAsyncFunction

2020-02-18 Thread KristoffSC
Hi all, Is there a way to emit a side output from RichAsyncFunction operator like it is possible with ProcessFunctions via ctx.output(outputTag, value); At first glance I don't see a way to do it In my use case RichAsyncFunction is used to call REST services and I would like to handle REST error c