jonvex commented on code in PR #12787:
URL: https://github.com/apache/hudi/pull/12787#discussion_r1953482672


##########
hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/index/bloom/BucketizedBloomCheckPartitioner.java:
##########
@@ -90,7 +90,8 @@ public BucketizedBloomCheckPartitioner(int targetPartitions, 
Map<HoodieFileGroup
     // of buckets and assigns buckets in the same order as file groups. If we 
were to simply round robin, then buckets
     // for a file group is more or less guaranteed to be placed on different 
partitions all the time.
     int minBucketsPerPartition = Math.max((int) Math.floor((1.0 * 
totalBuckets) / partitions), 1);
-    LOG.info(String.format("TotalBuckets %d, min_buckets/partition %d", 
totalBuckets, minBucketsPerPartition));
+    LOG.info(String.format("TotalBuckets %d, min_buckets/partition %d, 
partitions %d", totalBuckets, minBucketsPerPartition,

Review Comment:
   change this to 
   Log.info("TotalBuckets {}, min_buckets/partition {}, partitions {}", 
totalBuckets, minBucketsPerPartition, partitions);



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