pnowojski commented on a change in pull request #17024: URL: https://github.com/apache/flink/pull/17024#discussion_r701637113
########## File path: flink-runtime/src/main/java/org/apache/flink/runtime/io/network/partition/BufferWritingResultPartition.java ########## @@ -330,9 +330,16 @@ private BufferBuilder appendBroadcastDataForRecordContinuation( private void createBroadcastBufferConsumers(BufferBuilder buffer, int partialRecordBytes) throws IOException { try (final BufferConsumer consumer = buffer.createBufferConsumerFromBeginning()) { + int desirableBufferSize = Integer.MAX_VALUE; for (ResultSubpartition subpartition : subpartitions) { subpartition.add(consumer.copy(), partialRecordBytes); Review comment: You have duplicated: ``` subpartition.add(consumer.copy(), partialRecordBytes); ``` which is causing Azure failures. -- 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. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org