This is an automated email from the ASF dual-hosted git repository.

sivabalan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git


The following commit(s) were added to refs/heads/master by this push:
     new ef06e4a526 [HUDI-3810] Fixing lazy read for metadata log record 
readers (#5241)
ef06e4a526 is described below

commit ef06e4a5261008a7c64cc84a3cb62e106e121f93
Author: Sivabalan Narayanan <[email protected]>
AuthorDate: Thu Apr 7 15:40:51 2022 -0700

    [HUDI-3810] Fixing lazy read for metadata log record readers (#5241)
---
 .../org/apache/hudi/metadata/HoodieMetadataMergedLogRecordReader.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/hudi-common/src/main/java/org/apache/hudi/metadata/HoodieMetadataMergedLogRecordReader.java
 
b/hudi-common/src/main/java/org/apache/hudi/metadata/HoodieMetadataMergedLogRecordReader.java
index d8c631a22a..cbd7e6c175 100644
--- 
a/hudi-common/src/main/java/org/apache/hudi/metadata/HoodieMetadataMergedLogRecordReader.java
+++ 
b/hudi-common/src/main/java/org/apache/hudi/metadata/HoodieMetadataMergedLogRecordReader.java
@@ -60,7 +60,7 @@ public class HoodieMetadataMergedLogRecordReader extends 
HoodieMergedLogRecordSc
                                               ExternalSpillableMap.DiskMapType 
diskMapType,
                                               boolean 
isBitCaskDiskMapCompressionEnabled,
                                               Option<InstantRange> 
instantRange, boolean allowFullScan) {
-    super(fs, basePath, logFilePaths, readerSchema, latestInstantTime, 
maxMemorySizeInBytes, false, false, bufferSize,
+    super(fs, basePath, logFilePaths, readerSchema, latestInstantTime, 
maxMemorySizeInBytes, true, false, bufferSize,
         spillableMapBasePath, instantRange, diskMapType, 
isBitCaskDiskMapCompressionEnabled, false, allowFullScan, 
Option.of(partitionName), InternalSchema.getEmptyInternalSchema());
   }
 

Reply via email to