[jbpm-issues] [JBoss JIRA] Commented: (JBPM-2263) Multiple timers in node cause EventSource reset

Alejandro Guizar (JIRA) jira-events at lists.jboss.org
Wed Jan 27 18:28:19 EST 2010


    [ https://jira.jboss.org/jira/browse/JBPM-2263?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12508852#action_12508852 ] 

Alejandro Guizar commented on JBPM-2263:
----------------------------------------

GraphElement.fireEvent() does not consider that events can fire while an enclosing event is firing. To fix this, fireEvent() should save the original event source to a local variable and restored the original event source at the end.

> Multiple timers in node cause EventSource reset
> -----------------------------------------------
>
>                 Key: JBPM-2263
>                 URL: https://jira.jboss.org/jira/browse/JBPM-2263
>             Project: jBPM
>          Issue Type: Bug
>      Security Level: Public(Everyone can see) 
>          Components: Runtime Engine
>    Affects Versions: jBPM 3.2.6.SP1
>            Reporter: Asaf Shakarchi
>            Assignee: Alejandro Guizar
>             Fix For: jBPM 3.2.x
>
>
> When having multiple timers in a node, the 2nd timer and all after 'lose' the relationship between the timer->graphElement, thus, 
> timers are being persisted without the relationship with the graphElement, that causes serious problems in job execution time,
> Here's a deep detail explaination (considering there are two timers in one task node)
> When entering a node, the 'EVENTTYPE_NODE_ENTER' event gets fired, which causes two 'create timer actions' to be created via CreateTimerAction, one per timer,
> In GraphElement->fireEvent() there's the following piece of code: 
> ...
>  fireAndPropagateEvent(eventType, executionContext);
>     } finally {
>       executionContext.setEventSource(null);
>     }
> ...
> This part seems to clean up the eventSource, but that causes the 2nd timer and above to 'lose' the association to the graphElement(Node ID) the timer was created from,
> I assume its not taken into consideration that the create timer fires another 'inner' event that causes the eventSource to be reset:
> CreateTimerAction->createTimer(..) {
> graphElement.fireEvent(Event.EVENTTYPE_TIMER_CREATE, executionContext);
> }
> For now, we commented out the GraphElement->fireEvent->'executionContext.setEventSource(null);' line, but I don't really understand the impact of that,
> If that line is important, I think it's better to perform the cleanup only in case the fire event is not invoked in an 'inner' fire event call, or find another approach,
> Thanks.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the jbpm-issues mailing list