nfsantos commented on code in PR #2056:
URL: https://github.com/apache/jackrabbit-oak/pull/2056#discussion_r1944344470


##########
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:
   The increase to 100K is intentional. In my tests, I found that printing 
every 10K is too much. But now I'm wondering, this logic is also used for the 
AsyncIndexing, which is  much slower than the OutOfBandIndexer (segment tar 
indexer), so maybe I should leave it at 10K. I will revert to 10K for the time 
being.



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

Reply via email to