PrabhuJoseph commented on code in PR #4546:
URL: https://github.com/apache/hadoop/pull/4546#discussion_r919632264
##########
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/main/java/org/apache/hadoop/yarn/server/nodemanager/recovery/NMLeveldbStateStoreService.java:
##########
@@ -1813,4 +1813,22 @@ protected void checkVersion() throws IOException {
+ getCurrentVersion() + ", but loading version " + loadedVersion);
}
}
+ @Override
+ public void releaseAssignedResources(ContainerId containerId, String
resourceType) {
+ LOG.info("Release assigned resources for a container of a specified
resourceType");
Review Comment:
This has to be debug to avoid verbose logs.
if (LOG.isDebugEnabled()) {
LOG.debug(
"releaseAssignedResources: containerId=" +
container.getContainerId() + " resourceType=" + resourceType);
}
--
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]