AHeise commented on a change in pull request #9717: [FLINK-14044] [runtime] Reducing synchronization in AsyncWaitOperator URL: https://github.com/apache/flink/pull/9717#discussion_r328077096
########## File path: flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/async/queue/UnorderedStreamElementQueue.java ########## @@ -19,192 +19,146 @@ package org.apache.flink.streaming.api.operators.async.queue; import org.apache.flink.annotation.Internal; -import org.apache.flink.streaming.api.operators.async.OperatorActions; +import org.apache.flink.streaming.api.functions.async.ResultFuture; +import org.apache.flink.streaming.api.operators.TimestampedCollector; +import org.apache.flink.streaming.api.watermark.Watermark; +import org.apache.flink.streaming.runtime.streamrecord.StreamElement; +import org.apache.flink.streaming.runtime.streamrecord.StreamRecord; import org.apache.flink.util.Preconditions; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.ArrayDeque; -import java.util.Arrays; +import java.util.ArrayList; import java.util.Collection; +import java.util.Deque; import java.util.HashSet; -import java.util.Iterator; +import java.util.List; +import java.util.Optional; +import java.util.Queue; import java.util.Set; -import java.util.concurrent.Executor; -import java.util.concurrent.locks.Condition; -import java.util.concurrent.locks.ReentrantLock; /** - * Unordered implementation of the {@link StreamElementQueue}. The unordered stream element queue - * emits asynchronous results as soon as they are completed. Additionally it maintains the - * watermark-stream record order. This means that no stream record can be overtaken by a watermark - * and no watermark can overtake a stream record. However, stream records falling in the same - * segment between two watermarks can overtake each other (their emission order is not guaranteed). + * Unordered implementation of the {@link StreamElementQueue}. The unordered stream element queue provides + * asynchronous results as soon as they are completed. Additionally it maintains the watermark-stream record order. Review comment: It's actually the other way around: only elements within a stage can overtake each other. I will add a description to Stage and rewrite this description. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services