You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by "danny0405 (via GitHub)" <gi...@apache.org> on 2023/03/22 04:10:37 UTC

[GitHub] [hudi] danny0405 commented on a diff in pull request #8102: [HUDI-5880] Support partition pruning for flink streaming source in runtime

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?



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org