DaveTeng0 commented on code in PR #5925:
URL: https://github.com/apache/ozone/pull/5925#discussion_r1446539322
##########
hadoop-hdds/container-service/src/main/java/org/apache/hadoop/ozone/container/common/statemachine/commandhandler/CloseContainerCommandHandler.java:
##########
@@ -102,7 +102,12 @@ public void handle(SCMCommand command, OzoneContainer
ozoneContainer,
final Container container = controller.getContainer(containerId);
if (container == null) {
- LOG.error("Container #{} does not exist in datanode. "
+ // Change the log level from error to info,
+ // since the container may not have been created
+ // due to issue documented in HDDS-9550/HDDS-9600.
+ // Currently the error log stands out when it is
+ // probably not a real issue.
+ LOG.info("Container #{} does not exist in datanode. "
+ "Container close failed.", containerId);
Review Comment:
sounds good! thanks @errose28 , updated.
--
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]