nsivabalan commented on code in PR #11944:
URL: https://github.com/apache/hudi/pull/11944#discussion_r1765987313


##########
hudi-utilities/src/main/java/org/apache/hudi/utilities/HoodieMetadataTableValidator.java:
##########
@@ -291,6 +296,12 @@ public static class Config implements Serializable {
     @Parameter(names = {"--validate-bloom-filters"}, description = "Validate 
bloom filters of base files", required = false)
     public boolean validateBloomFilters = false;
 
+    @Parameter(names = {"--view-storage-type-fs-listing"}, description = "View 
storage type to use for File System based listing", required = false)
+    public String viewStorageTypeForFSListing = 
FileSystemViewStorageType.MEMORY.name();
+
+    @Parameter(names = {"--view-storage-type-mdt"}, description = "View 
storage type to use for metadata based listing", required = false)
+    public String viewStorageTypeForMetadata = 
FileSystemViewStorageType.MEMORY.name();

Review Comment:
   yes. for FS based listing, we wanted to keep it plain simple. what in case 
spillable map had some bugs and so we don't want to compare FS w/ spillable w/ 
MDT w/ FS based. 
   



-- 
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]

Reply via email to