danny0405 commented on code in PR #13498:
URL: https://github.com/apache/hudi/pull/13498#discussion_r2174045203


##########
hudi-common/src/main/java/org/apache/hudi/common/table/HoodieTableConfig.java:
##########
@@ -304,6 +308,18 @@ public class HoodieTableConfig extends HoodieConfig {
       .sinceVersion("1.0.0")
       .withDocumentation("When set to true, the table can support reading and 
writing multiple base file formats.");
 
+  public static final ConfigProperty<PartialUpdateMode> PARIL_UPDATE_MODE = 
ConfigProperty
+      .key("hoodie.write.partial.update.mode")
+      .defaultValue(PartialUpdateMode.NONE)
+      .sinceVersion("1.1.0")
+      .withDocumentation("This property defines the merge behavior for 
standard merge mode");
+
+  public static final ConfigProperty<String> 
PARTIAL_UPDATE_CUSTOM_MARKER_VALUE = ConfigProperty
+      .key("hoodie.write.partial.update.custom.marker.value")
+      .noDefaultValue()
+      .sinceVersion("1.1.0")
+      .withDocumentation("This property defines custom value for partial 
update mode: IGNORE_MARKERS");

Review Comment:
   the doc is confusing, can you elaborate?



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