PrabhuJoseph commented on code in PR #4546:
URL: https://github.com/apache/hadoop/pull/4546#discussion_r918788665


##########
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/test/java/org/apache/hadoop/yarn/server/nodemanager/recovery/TestNMLeveldbStateStoreService.java:
##########
@@ -1756,6 +1756,12 @@ public void testStateStoreForResourceMapping() throws 
IOException {
     resources = rcs.getResourceMappings().getAssignedResources("numa");
     Assert.assertEquals(numaRes, resources);
     Assert.assertEquals(numaRes, 
resourceMappings.getAssignedResources("numa"));
+    // test removing numa resources from state store
+    stateStore.releaseNumaResource(containerId);
+    Assert.assertEquals(0, 
resourceMappings.getAssignedResources("numa").size());
+    // testing calling deletion of non-existing key doesn't break anything
+    stateStore.releaseNumaResource(containerId);

Review Comment:
   1. We can use stateStore.loadContainersState() to check if it is released or 
not.
   



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