linliu-code commented on code in PR #13047: URL: https://github.com/apache/hudi/pull/13047#discussion_r2017746196
########## hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/io/HoodieSparkFileGroupReaderBasedMergeHandle.java: ########## @@ -283,6 +283,10 @@ public List<WriteStatus> close() { writeStatus.getStat().setTotalLogBlocks(readStats.getTotalLogBlocks()); writeStatus.getStat().setTotalCorruptLogBlock(readStats.getTotalCorruptLogBlock()); writeStatus.getStat().setTotalRollbackBlocks(readStats.getTotalRollbackBlocks()); + writeStatus.getStat().setNumInserts(insertRecordsWritten); + writeStatus.getStat().setNumUpdateWrites(updatedRecordsWritten); + writeStatus.getStat().setNumDeletes(recordsDeleted); + writeStatus.getStat().setNumWrites(recordsWritten); Review Comment: Yeah, then the reason for the failure is the position based buffer does not support these metrics. Fixed the change. -- 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: commits-unsubscr...@hudi.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org