Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
Refer to discussion on YARN-2136 (https://issues.apache.org/jira/browse/YARN-2136?focusedCommentId=14097266&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-14097266).
As pointed out by jianhe, we should process the dispatcher event queue before closing the state store by flipping over the following statements in code.
protected void serviceStop() throws Exception { closeInternal(); dispatcher.stop(); }
Currently, if the state store is being stopped on events such as switching to standby, it will first close the state store(in case of ZKRMStateStore, close connection with ZK) and then process the pending events. Instead, we should first process the pending events and then call close.
Attachments
Attachments
Issue Links
- relates to
-
YARN-2136 RMStateStore can explicitly handle store/update events when fenced
- Closed