I want to use Flink's event timestamp and plan to implement a simple emitWatermark which is System.currentTimeInMillis - 10 secs. My understanding is tumbling window will fire start_time + window_interval + 10 secs. So if events arrives later than the watermark those events will be dropped.
Is there a way to write all the dropped events by Flink to a sink like S3?