Re: Architecture question
Posted by
Fabian Hueske-2 on
URL: http://deprecated-apache-flink-user-mailing-list-archive.369.s1.nabble.com/Architecture-question-tp18341p18407.html
Hi,
What you are looking for is a BucketingSink that works on event time (the timestamp is encoded in your data).
AFAIK, Flink's BucketingSink has been designed to work in processing time, but you can implement a Bucketer that creates buckets based on a timestamp in the data.
You might need to play around with the parameters for closing open buckets for a good behavior (similar to watermark tuning).
Best, Fabian