prashantwason commented on a change in pull request #2064:
URL: https://github.com/apache/hudi/pull/2064#discussion_r491217382



##########
File path: 
hudi-client/src/main/java/org/apache/hudi/config/HoodieWriteConfig.java
##########
@@ -116,6 +119,17 @@
   public static final String MAX_CONSISTENCY_CHECKS_PROP = 
"hoodie.consistency.check.max_checks";
   public static int DEFAULT_MAX_CONSISTENCY_CHECKS = 7;
 
+  // Enable the internal Metadata Table which saves file listings
+  private static final String USE_FILE_LISTING_METADATA = 
"hoodie.metadata.enable";
+  private static final String DEFAULT_USE_FILE_LISTING_METADATA = "false";
+
+  // Validate contents of Metadata Table on each access against the actual 
filesystem
+  private static final String FILE_LISTING_METADATA_VERIFY = 
"hoodie.metadata.verify";
+  private static final String DEFAULT_FILE_LISTING_METADATA_VERIFY = "false";
+
+  // Serialized compaction config to be used for Metadata Table
+  public static final String HOODIE_METADATA_COMPACTION_CONFIG = 
"hoodie.metadata.compaction.config";

Review comment:
       Not a constant. This is user provided config just like for dataset 
compaction.




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


Reply via email to