leesf commented on code in PR #7598:
URL: https://github.com/apache/hudi/pull/7598#discussion_r1063016759
##########
hudi-common/src/main/java/org/apache/hudi/common/table/HoodieTableConfig.java:
##########
@@ -225,6 +225,36 @@ public class HoodieTableConfig extends HoodieConfig {
.defaultValue(false)
.withDocumentation("When set to true, will not write the partition
columns into hudi. By default, false.");
+
+ public static final ConfigProperty<Boolean> ALLOW_OPERATION_METADATA_FIELD =
ConfigProperty
+ .key("hoodie.allow.operation.metadata.field")
+ .defaultValue(false)
+ .sinceVersion("0.9.0")
+ .withDocumentation("Whether to include '_hoodie_operation' in the
metadata fields. "
+ + "Once enabled, all the changes of a record are persisted to the
delta log directly without merge");
+
+ public static final ConfigProperty<String> INDEX_TYPE = ConfigProperty
+ .key("hoodie.index.type")
+ // Builder#getDefaultIndexType has already set it according to engine
type
+ .noDefaultValue()
+ .withDocumentation("Type of index to use. Default is SIMPLE on Spark
engine, "
+ + "and INMEMORY on Flink and Java engines. "
+ + "Possible options are [BLOOM | GLOBAL_BLOOM |SIMPLE |
GLOBAL_SIMPLE | INMEMORY | HBASE | BUCKET]. "
Review Comment:
` |SIMPLE ` -> ` | SIMPLE `
--
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]