CapMoon opened a new pull request, #8677:
URL: https://github.com/apache/hadoop/pull/8677

   HDFS-17962. NNTop may lose user metrics during expired window cleanup
   <!--
     Thanks for sending a pull request!
       1. If this is your first time, please read our contributor guidelines: 
https://cwiki.apache.org/confluence/display/HADOOP/How+To+Contribute
       2. Make sure your PR title starts with JIRA issue id, e.g., 
'HADOOP-17799. Your PR title ...'.
   -->
   
   ### Description of PR
   NNTop stores a RollingWindow for each (metric, user) pair in a 
ConcurrentHashMap.
   
   In RollingWindowManager#getTopUsersForMetric(), expired user windows are 
removed when getSum(time) returns 0. Previously, the cleanup used an iterator 
to remove the map entry, while RollingWindowManager#recordMetric() obtained a 
RollingWindow from the map and incremented it outside of any per-key atomic 
operation.
   
   This allows the following race:
   
   1. A recordMetric() thread obtains an existing RollingWindow for a user.
   2. A snapshot thread observes that the window sum is 0 and removes the 
user-to-window mapping.
   3. The recordMetric() thread increments the RollingWindow it obtained 
earlier.
   4. The increment is applied to an object that is no longer in the map, so 
the metric is lost from subsequent NNTop snapshots.
   
   ### How was this patch tested?
   Tested by newly added unit test
   
   ### For code changes:
   
   - [ ] Does the title of this PR start with the corresponding JIRA issue id 
(e.g. 'HADOOP-17799. Your PR title ...')?
   - [ ] Object storage: Have the integration tests been executed and the 
endpoint
         declared according to the connector-specific documentation? *Note: 
Automated CI
         testing doesn't cover all cases so manual testing with cloud storage 
is still
         required.*
   - [ ] If adding new dependencies to the code, are these dependencies 
licensed in a way that is compatible for inclusion under [ASF 
2.0](http://www.apache.org/legal/resolved.html#category-a)?
   - [ ] If applicable, have you updated the `LICENSE`, `LICENSE-binary`, 
`NOTICE-binary` files?
   
   ### AI Tooling
   
   If an AI tool was used:
   
   - [ ] The PR includes the phrase "Contains content generated by <tool>"
         where <tool> is the name of the AI tool used.
   - [ ] My use of AI contributions follows the ASF legal policy
         https://www.apache.org/legal/generative-tooling.html
   


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