geserdugarov commented on code in PR #12796:
URL: https://github.com/apache/hudi/pull/12796#discussion_r1946069339
##########
hudi-flink-datasource/hudi-flink/src/main/java/org/apache/hudi/configuration/FlinkOptions.java:
##########
@@ -675,6 +675,14 @@ private FlinkOptions() {
.defaultValue(ClientIds.INIT_CLIENT_ID)
.withDescription("Unique identifier used to distinguish different writer
pipelines for concurrent mode");
+ @AdvancedConfig
+ public static final ConfigOption<Boolean> WRITE_FAST_MODE = ConfigOptions
+ .key("write.fast.mode")
+ .booleanType()
+ .defaultValue(false)
+ .withDescription("Optimized Flink write into Hudi table, which uses
customized serialization/deserialization. "
+ + "Note, that only SIMPLE BUCKET index is supported for now.");
Review Comment:
Missed it. Thanks! Fixed in 5a8153646ecdb834ec1e22c2b41888fb15a4f967.
--
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]