TanYuxin-tyx commented on code in PR #23255: URL: https://github.com/apache/flink/pull/23255#discussion_r1314726683
########## flink-runtime/src/main/java/org/apache/flink/runtime/io/network/partition/hybrid/tiered/file/PartitionFileReader.java: ########## @@ -78,4 +91,165 @@ long getPriority( /** Release the {@link PartitionFileReader}. */ void release(); + + /** A {@link PartialBuffer} is a part slice of a larger buffer. */ + class PartialBuffer implements Buffer { + + private final long fileOffset; Review Comment: Because removing the `fileOffset` may significantly affect the performance, we added the `fileOffset` back to `PartialBuffer`. -- 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