danny0405 commented on code in PR #7296:
URL: https://github.com/apache/hudi/pull/7296#discussion_r1031287497
##########
hudi-flink-datasource/hudi-flink/src/main/java/org/apache/hudi/configuration/FlinkOptions.java:
##########
@@ -280,6 +280,14 @@ private FlinkOptions() {
+ "usually with delta time compaction strategy that is long enough,
for e.g, one week;\n"
+ "2) changelog mode is enabled, this option is a solution to keep
data integrity");
+ // this option is experimental
+ public static final ConfigOption<Boolean> READ_STREAMING_SKIP_CLUSTERING =
ConfigOptions
+ .key("read.streaming.skip_clustering")
+ .booleanType()
+ .defaultValue(false)
+ .withDescription("Whether to skip clustering instants for streaming
read,\n"
+ + "to avoid reading duplicates");
Review Comment:
Yeah, that's needed, can you add more cases for clustering here ? You can
add UTs in `TestInputFormat`.
--
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]