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


##########
hudi-client/hudi-java-client/src/main/java/org/apache/hudi/index/JavaHoodieIndexFactory.java:
##########
@@ -55,6 +57,15 @@ public static HoodieIndex createIndex(HoodieWriteConfig 
config) {
         return new HoodieInMemoryHashIndex(config);
       case BLOOM:
         return new HoodieBloomIndex(config, 
ListBasedHoodieBloomIndexHelper.getInstance());
+      case BUCKET:
+        switch (config.getBucketIndexEngineType()) {
+          case SIMPLE:
+            return new HoodieSimpleBucketIndex(config);
+          case CONSISTENT_HASHING:

Review Comment:
   Does it work correctly e2e?



-- 
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]

Reply via email to