vamsikarnika commented on code in PR #14260:
URL: https://github.com/apache/hudi/pull/14260#discussion_r2558564864


##########
hudi-common/src/main/avro/HoodieMetadata.avsc:
##########
@@ -56,6 +56,15 @@
                 }
             ]
         },
+        {
+            "name": "basePathForPartition",
+            "type": [
+                "null",
+                "string"
+            ],
+            "default": null,
+            "doc": "Refers to the base path for the partition of interest when 
filesystemMetadata is set. This is an optional field"

Review Comment:
   Same, will address them in the next commits



##########
hudi-common/src/main/java/org/apache/hudi/common/config/HoodieMetadataConfig.java:
##########
@@ -320,6 +320,20 @@ public final class HoodieMetadataConfig extends 
HoodieConfig {
       .withDocumentation("Initializes the metadata table by reading from the 
file system when the table is first created. Enabled by default. "
           + "Warning: This should only be disabled when manually constructing 
the metadata table outside of typical Hudi writer flows.");
 
+  public static final ConfigProperty<Boolean> ENABLE_BASE_PATH_FOR_PARTITONS = 
ConfigProperty
+      .key(METADATA_PREFIX + ".enable.base.path.for.partitions")
+      .defaultValue(false)
+      .sinceVersion("0.14.1")

Review Comment:
   Fixed it



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