Re: Why assignTimestampsAndWatermarks parallelism same as map,it will not fired?
Posted by
Fabian Hueske-2 on
URL: http://deprecated-apache-flink-user-mailing-list-archive.369.s1.nabble.com/Why-assignTimestampsAndWatermarks-parallelism-same-as-map-it-will-not-fired-tp19733p19749.html
Hi,
This sounds like one of the partitions does not receive data. Watermark generation is data driven, i.e., the watermark can only advance if the TimestampAndWatermarkAssigner sees events.
By changing the parallelism between the map and the assigner, the events are shuffled across and hence there is no "empty" partition anymore.
I would check if one instance of your sources does not emit events.
Best, Fabian