nfsantos commented on code in PR #2056: URL: https://github.com/apache/jackrabbit-oak/pull/2056#discussion_r1944346487
########## oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/progress/IndexingProgressReporter.java: ########## @@ -91,7 +91,7 @@ public void setMessagePrefix(String messagePrefix) { } public void traversedNode(PathSource pathSource) throws CommitFailedException { - if (++traversalCount % 10000 == 0) { + if (++traversalCount % 100_000 == 0) { Review Comment: A better approach would be to print the messages at a fixed time interval, but that is a bigger change, so better leave it for another PR. -- 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: oak-dev-unsubscr...@jackrabbit.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org