Github user 10110346 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22163#discussion_r212166322
  
    --- Diff: 
core/src/main/java/org/apache/spark/shuffle/sort/ShuffleExternalSorter.java ---
    @@ -206,14 +211,21 @@ private void writeSortedFile(boolean isLastFile) {
           long recordReadPosition = recordOffsetInPage + uaoSize; // skip over 
record length
           while (dataRemaining > 0) {
             final int toTransfer = Math.min(diskWriteBufferSize, 
dataRemaining);
    -        Platform.copyMemory(
    -          recordPage, recordReadPosition, writeBuffer, 
Platform.BYTE_ARRAY_OFFSET, toTransfer);
    -        writer.write(writeBuffer, 0, toTransfer);
    +        if (bufferOffset > 0 && bufferOffset + toTransfer > 
DISK_WRITE_BUFFER_SIZE) {
    --- End diff --
    
    The `numRecordsWritten`  in `DiskBlockObjectWriter`  is still  correct 
during the process after this PR


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to