You are viewing a plain text version of this content. The canonical link for it is here.
Posted to yarn-issues@hadoop.apache.org by "Binglin Chang (JIRA)" <ji...@apache.org> on 2014/06/03 10:50:02 UTC

[jira] [Commented] (YARN-2030) Use StateMachine to simplify handleStoreEvent() in RMStateStore

    [ https://issues.apache.org/jira/browse/YARN-2030?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14016325#comment-14016325 ] 

Binglin Chang commented on YARN-2030:
-------------------------------------

Hi, [~djp].  I think the patch is ready for review, could you help review the patch? 

> Use StateMachine to simplify handleStoreEvent() in RMStateStore
> ---------------------------------------------------------------
>
>                 Key: YARN-2030
>                 URL: https://issues.apache.org/jira/browse/YARN-2030
>             Project: Hadoop YARN
>          Issue Type: Improvement
>            Reporter: Junping Du
>            Assignee: Binglin Chang
>         Attachments: YARN-2030.v1.patch, YARN-2030.v2.patch
>
>
> Now the logic to handle different store events in handleStoreEvent() is as following:
> {code}
> if (event.getType().equals(RMStateStoreEventType.STORE_APP)
>         || event.getType().equals(RMStateStoreEventType.UPDATE_APP)) {
>       ...
>       if (event.getType().equals(RMStateStoreEventType.STORE_APP)) {
>         ...
>       } else {
>         ...
>       }
>       ...
>       try {
>         if (event.getType().equals(RMStateStoreEventType.STORE_APP)) {
>           ...
>         } else {
>           ...
>         }
>       } 
>       ...
>     } else if (event.getType().equals(RMStateStoreEventType.STORE_APP_ATTEMPT)
>         || event.getType().equals(RMStateStoreEventType.UPDATE_APP_ATTEMPT)) {
>       ...
>       if (event.getType().equals(RMStateStoreEventType.STORE_APP_ATTEMPT)) {
>         ...
>       } else {
>         ...
>       }
>         ...
>         if (event.getType().equals(RMStateStoreEventType.STORE_APP_ATTEMPT)) {
>           ...
>         } else {
>           ...
>         }
>       }
>       ...
>     } else if (event.getType().equals(RMStateStoreEventType.REMOVE_APP)) {
>     ...
>     } else {
>       ...
>     }
> }
> {code}
> This is not only confuse people but also led to mistake easily. We may leverage state machine to simply this even no state transitions.



--
This message was sent by Atlassian JIRA
(v6.2#6252)