manojpec commented on a change in pull request #4352: URL: https://github.com/apache/hudi/pull/4352#discussion_r781018618
########## File path: hudi-client/hudi-client-common/src/main/java/org/apache/hudi/index/bloom/HoodieBloomIndex.java ########## @@ -80,9 +90,12 @@ public HoodieBloomIndex(HoodieWriteConfig config, BaseHoodieBloomIndexHelper blo HoodiePairData<String, String> partitionRecordKeyPairs = records.mapToPair( record -> new ImmutablePair<>(record.getPartitionPath(), record.getRecordKey())); + HoodieTimer timer = new HoodieTimer().startTimer(); // Step 2: Lookup indexes for all the partition/recordkey pair HoodiePairData<HoodieKey, HoodieRecordLocation> keyFilenamePairs = lookupIndex(partitionRecordKeyPairs, context, hoodieTable); + final long indexLookupTime = timer.endTimer(); + LOG.debug("Index lookup time taken: " + indexLookupTime + " ms"); Review comment: Right, this was used for debugging only. Removed now. -- 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