Re: Re ordering events with flink

2019-11-02 Thread David Anderson
Yes, it's possible to sort a stream by the event time timestamps on the events. This depends on having reliable watermarks -- as events that are late can not be emitted in order. There are several ways to accomplish this. You could, for example, use a ProcessFunction, and implement the sorting you

Re ordering events with flink

2019-11-01 Thread Vishwas Siravara
Hi guys, I want to know if it's possible to sort events in a flink data stream. I know I can't sort a stream but is there a way in which I can buffer for a very short time and sort those events before sending it to a data sink. In our scenario we consume from a kafka topic which has multiple parti