iprithv commented on code in PR #15978:
URL: https://github.com/apache/lucene/pull/15978#discussion_r3196677690
##########
lucene/core/src/java/org/apache/lucene/util/hnsw/HnswGraphBuilder.java:
##########
@@ -204,16 +227,30 @@ protected void addVectors(int minOrd, int maxOrd) throws
IOException {
if (frozen) {
throw new IllegalStateException("This HnswGraphBuilder is frozen and
cannot be updated");
}
- long start = System.nanoTime(), t = start;
- if (infoStream.isEnabled(HNSW_COMPONENT)) {
- infoStream.message(HNSW_COMPONENT, "addVectors [" + minOrd + " " +
maxOrd + ")");
- }
+ long startNs = System.nanoTime();
+ long progressStartNs = mergeStartTimeNS != -1 ? mergeStartTimeNS : startNs;
Review Comment:
@mikemccand Just wanted to touch base on this. Thanks!
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]