bharatviswa504 commented on a change in pull request #769: HDDS-1456. Stop the datanode, when any datanode statemachine state is… URL: https://github.com/apache/hadoop/pull/769#discussion_r278392038
########## File path: hadoop-hdds/container-service/src/main/java/org/apache/hadoop/ozone/container/common/statemachine/DatanodeStateMachine.java ########## @@ -195,6 +199,14 @@ private void start() throws IOException { LOG.error("Unable to finish the execution.", e); } } + + // If we have got some exception in stateMachine we set the state to + // shutdown to stop the stateMachine thread. Along with this we should + // also stop the datanode. + if (context.getShutdownStateMachine()) { Review comment: If this check is true means, the state is transitioned to shutdown, we call stop() and terminate. So, datanode process is terminated. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-issues-h...@hadoop.apache.org