prashantwason commented on a change in pull request #3762:
URL: https://github.com/apache/hudi/pull/3762#discussion_r733416261
##########
File path:
hudi-common/src/main/java/org/apache/hudi/common/config/HoodieMetadataConfig.java
##########
@@ -115,6 +115,20 @@
.sinceVersion("0.7.0")
.withDocumentation("Parallelism to use, when listing the table on lake
storage.");
+ public static final ConfigProperty<Boolean> ENABLE_INLINE_READING =
ConfigProperty
+ .key(METADATA_PREFIX + ".enable.inline.reading")
+ .defaultValue(true)
+ .sinceVersion("0.10.0")
+ .withDocumentation("Enable inline reading of Log files. By default log
block contents are read as byte[] using regular input stream and records "
+ + "are deserialized from it. Enabling this will read each log block
as an inline file and read records from the same. For instance, "
+ + "for HFileDataBlock, a inline file will be read using
HFileReader.");
+
+ public static final ConfigProperty<Boolean> ENABLE_FULL_SCAN_LOG_FILES =
ConfigProperty
+ .key(METADATA_PREFIX + ".enable.full.scan.log.files")
+ .defaultValue(true)
+ .sinceVersion("0.10.0")
+ .withDocumentation("Enable full scanning of log files while reading log
records. If disabled, hudi does look up of only interested entries.");
Review comment:
interesting entries
--
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]