danny0405 commented on code in PR #13017:
URL: https://github.com/apache/hudi/pull/13017#discussion_r2016098337


##########
hudi-flink-datasource/hudi-flink/src/main/java/org/apache/hudi/configuration/OptionsResolver.java:
##########
@@ -86,6 +87,15 @@ public static boolean supportRowDataAppend(Configuration 
conf, RowType rowType)
             || 
WriteOperationType.valueOf(conf.get(FlinkOptions.OPERATION).toUpperCase()) == 
WriteOperationType.DELETE);
   }
 
+  /**
+   * Returns whether current index is partition level simple bucket index 
based on given configuration {@code conf}.
+   */
+  public static Boolean isPartitionLevelSimpleBucketIndex(Configuration conf) {
+    HoodieIndex.BucketIndexEngineType engineType = 
OptionsResolver.getBucketEngineType(conf);
+    return engineType.equals(HoodieIndex.BucketIndexEngineType.SIMPLE)

Review Comment:
   I didn't see the fix on reader side, for e.g. the bucket index bucket 
pruning, does the query still work if the pruning happens?



-- 
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-unsubscr...@hudi.apache.org

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

Reply via email to