pratyakshsharma commented on a change in pull request #4944:
URL: https://github.com/apache/hudi/pull/4944#discussion_r820262933
##########
File path:
hudi-flink/src/main/java/org/apache/hudi/configuration/FlinkOptions.java
##########
@@ -675,6 +675,24 @@ private FlinkOptions() {
.withDescription("INT64 with original type TIMESTAMP_MICROS is converted
to hive timestamp type.\n"
+ "Disabled by default for backward compatibility.");
+ public static final ConfigOption<Boolean> HIVE_SYNC_ENABLE_CUSTOM_TABLE_NAME
= ConfigOptions
+ .key("hive_sync.enable_custom_table_name")
+ .booleanType()
+ .defaultValue(false)
+ .withDescription("define custom table name with merge on read
table");
+
+ public static final ConfigOption<String> HIVE_SYNC_CUSTOM_RO_NAME =
ConfigOptions
+ .key("hive_sync.custom_ro_name")
+ .stringType()
+ .defaultValue("")
+ .withDescription("custom ro table name for merge on read , only
valid when enable_custom_table_name is true, should different with
custom_rt_name''");
+
+ public static final ConfigOption<String> HIVE_SYNC_CUSTOM_RT_NAME =
ConfigOptions
+ .key("hive_sync.custom_rt_name")
+ .stringType()
+ .defaultValue("")
+ .withDescription("custom snapshot table name for merge on read, only
valid when enable_custom_table_name is true, should different with
custom_ro_name''");
Review comment:
ditto, should be different from
--
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]