prashantwason commented on a change in pull request #2496:
URL: https://github.com/apache/hudi/pull/2496#discussion_r568061380
##########
File path:
hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieWriteConfig.java
##########
@@ -931,6 +941,21 @@ public int getMetadataCleanerCommitsRetained() {
return
Integer.parseInt(props.getProperty(HoodieMetadataConfig.CLEANER_COMMITS_RETAINED_PROP));
}
+ /**
+ * File system IO buffering configs.
+ */
+ public boolean isFileIOBufferingEnabled() {
+ return Boolean.parseBoolean(props.getProperty(FILE_IO_BUFFER_ENABLED,
DEFAULT_FILE_IO_BUFFER_ENABLED));
+ }
+
+ public int getFileIOBufferiMinSize() {
Review comment:
Fixed
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]