AHeise commented on a change in pull request #11507: [FLINK-16587] Add basic CheckpointBarrierHandler for unaligned checkpoint URL: https://github.com/apache/flink/pull/11507#discussion_r407253235
########## File path: flink-runtime/src/main/java/org/apache/flink/runtime/io/network/partition/PipelinedSubpartition.java ########## @@ -146,6 +163,31 @@ private boolean add(BufferConsumer bufferConsumer, boolean finish) { return true; } + private void handleAddingBarrier(BufferConsumer bufferConsumer, boolean insertAsHead) { + assert Thread.holdsLock(buffers); + if (insertAsHead) { + // Note here we assume there is only one checkpoint triggered at a time. If we want to support + // multiple checkpoints running at the same time, we need maintain a map for in-flight buffers. + inflightBufferSnapshot.clear(); Review comment: Implemented nit and renamed to `requestInflightBufferSnapshot`. Added tests for subpartition in this commit. ---------------------------------------------------------------- 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