linliu-code commented on code in PR #9819:
URL: https://github.com/apache/hudi/pull/9819#discussion_r1353658611
##########
hudi-common/src/main/java/org/apache/hudi/common/table/read/HoodieFileGroupReader.java:
##########
@@ -74,13 +75,16 @@ public final class HoodieFileGroupReader<T> implements
Closeable {
// Length of bytes to read from the base file
private final long length;
// Key to record and metadata mapping from log files
+ private final boolean positionBasedWriteEnabled;
private final Map<String, Pair<Option<T>, Map<String, Object>>>
logFileRecordMapping = new HashMap<>();
+ private final Map<Integer, Pair<Option<T>, Map<String, Object>>>
positionToRecords = new HashMap<>();
Review Comment:
Make sense.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]