Skip to content

Commit

Permalink
[VL][UNIFFLE] Remove inc BytesWritten in VeloxUniffleColumnarShuffleW…
Browse files Browse the repository at this point in the history
…riter
  • Loading branch information
wForget committed Jun 28, 2024
1 parent 86449d0 commit 4d38ead
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,8 @@ public Set<Phase> applicablePhases() {
- splitResult.getTotalWriteTime()
- splitResult.getTotalCompressTime());

shuffleWriteMetrics.incBytesWritten(splitResult.getTotalBytesWritten());
// bytesWritten is calculated in uniffle side: WriteBufferManager.createShuffleBlock
// shuffleWriteMetrics.incBytesWritten(splitResult.getTotalBytesWritten());
shuffleWriteMetrics.incWriteTime(
splitResult.getTotalWriteTime() + splitResult.getTotalPushTime());
// partitionLengths is calculate in uniffle side
Expand Down

0 comments on commit 4d38ead

Please sign in to comment.