pnowojski commented on a change in pull request #6417: [FLINK-9913][runtime] Improve output serialization only once in RecordWriter URL: https://github.com/apache/flink/pull/6417#discussion_r217655518
########## File path: flink-runtime/src/main/java/org/apache/flink/runtime/io/network/api/writer/RecordWriter.java ########## @@ -230,7 +227,6 @@ private BufferBuilder getBufferBuilder(int targetChannel) throws IOException, In } private BufferBuilder requestNewBufferBuilder(int targetChannel) throws IOException, InterruptedException { - checkState(!bufferBuilders[targetChannel].isPresent()); Review comment: This `checkState` was preventing from some bugs and data loses. Maybe replace with: ``` checkState(!bufferBuilders[targetChannel].isPresent() || bufferBuilders[targetChannel].isFinished()); ``` ? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on 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