sodonnel commented on pull request #3675:
URL: https://github.com/apache/hadoop/pull/3675#issuecomment-975785577


   Ah yes, the BackoffMonitor gets calls the method below which is indeed 
limits by max Tracked Nodes:
   
   ```
   private void processPendingNodes() {
       while (!pendingNodes.isEmpty() &&
           (maxConcurrentTrackedNodes == 0 ||
               outOfServiceNodeBlocks.size() < maxConcurrentTrackedNodes)) {
         outOfServiceNodeBlocks.put(pendingNodes.poll(), null);
       }
     }
   ```


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

Reply via email to