danny0405 commented on code in PR #8102:
URL: https://github.com/apache/hudi/pull/8102#discussion_r1144209473
##########
hudi-flink-datasource/hudi-flink/src/main/java/org/apache/hudi/configuration/FlinkOptions.java:
##########
@@ -318,6 +318,13 @@ private FlinkOptions() {
+ "1) you are definitely sure that the consumer reads [faster
than/completes before] any clustering instants "
+ "when " +
HoodieClusteringConfig.PRESERVE_COMMIT_METADATA.key() + " is set to false.\n");
+ // this option is experimental
+ public static final ConfigOption<Boolean>
READ_STREAMING_CONTINUOUS_PARTITION_PRUNE = ConfigOptions
+ .key("read.streaming.continuous.partition-prune")
+ .booleanType()
+ .defaultValue(false)// default disable continuous partition pruning
+ .withDescription("Whether to enable continuous partition pruning for
streaming read, default false");
Review Comment:
Can we emilinate this option? We should try best for this optimization, if
any exception use case is detected, just fallback to the original behavior/
--
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]