Javadoc для DataStream # assignAscendingTimestamps
* Assigns timestamps to the elements in the data stream and periodically creates
* watermarks to signal event time progress.
*
* This method is a shortcut for data streams where the element timestamp are known
* to be monotonously ascending within each parallel stream.
* In that case, the system can generate watermarks automatically and perfectly
* by tracking the ascending timestamps.
Этот метод предполагает that the the element timestamp are known to be monotonously ascending within each parallel stream
. Но на практике почти ни один поток не может дать такую гарантию, что метки времени событий расположены в порядке возрастания.
Я хотел бы заключить, что этот метод никогда не должен использоваться, но я хотел бы спросить, если я что-то пропустил (например, когда его использовать)