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:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]