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


##########
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. Supported values are MEMORY 
(by default) and SPILLABLE_DISK.", required = false)
+    public String viewStorageTypeForFSListing = 
FileSystemViewStorageType.MEMORY.name();
+
+    @Parameter(names = {"--view-storage-type-mdt"}, description = "View 
storage type to use for metadata based listing. Supported values are MEMORY (by 
default) and SPILLABLE_DISK.", required = false)

Review Comment:
   ```suggestion
       @Parameter(names = {"--view-storage-type-mdt"}, description = "View 
storage type to use for metadata table based listing. Supported values are 
MEMORY (by default) and SPILLABLE_DISK.", required = false)
   ```



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