[prev in list] [next in list] [prev in thread] [next in thread] 

List:       jboss-user
Subject:    [jboss-user] [jBPM] - jBPM 5.4, Persistence, and Safe-Points
From:       Franco Gasperino <do-not-reply () jboss ! com>
Date:       2013-06-27 22:51:54
Message-ID: 2-825366-3-147195-1372373506324.jivesbs.jivemailuser () https://community ! jboss ! org
[Download RAW message or body]

[Attachment #2 (multipart/alternative)]


Franco Gasperino [https://community.jboss.org/people/franco.gasperino] created the \
discussion

"jBPM 5.4, Persistence, and Safe-Points"

To view the discussion, visit: https://community.jboss.org/message/825366#825366

--------------------------------------------------------------
Community,

Excuse the long-winded post. I'm trying to debug an issue with an integration project \
with the following components:

* jBPM 5.4 final, Drools 5.5 final
* Spring 3.2.x
* Bitronix 2.1.x

The core jBPM engine is heavily integrated with a custom stack allowing process \
instances to be created and run via all sorts of connectivity. The custom layer will \
take the process id & input parameters, delegate to a thread in an executor, which \
will:

1. Instantiate the drools environment (with JTA support).
2. Create the knowledge session.
3. Create a custom WorkItemHandler, associate each custom service task with this \
handler. 4. Create and associate the event handlers.
5. Create and start the process instance.

Everything executes as-expected, the JTA is performing commits and I can see the \
Hibernate activity inserting, updating, and deleting records from the Derby XA \
database.

However, when testing a process instance which *should* trigger a safe-point, i see \
unexpected behavior. In this case:

* Script "Hello" is a java/groovy/whatever script task.
* ServiceTask "MockAsyncTask" is a java class, which is associated / registered with \
                the custom WorkItemHandler. * executeWorkItem() does NOT call \
                completeWorkItem()
* Returns control to the jBPM engine, which should trigger a safe-point.
* Causes return of startProcessInstance(), which will exit the worker thread in the \
executor.

* Script "Bye" is a java/groovy/whatever script task.

The workflow: Start -> Hello -> MockAsyncTask -> Bye -> End

As expected, I see the behavior. I see that the ProcessInstance object associated has \
a state field of "2", which is active. Howevever, the hibernate update statements on \
the ProcessInstanceInfo table always have a state value of '0'. This is the breaking \
behavior.

When I attempt to call the adapter layer with the session id, process instance id, \
work item id, and a payload:

1. Instantiate the drools environment (JTA support).
2. Load the existing knowledge session.
3. Create a custom WorkItemHandler, associate each custom service task with this \
handler. 4. Create and associate event handlers.
5. Call completeWorkItem().

The workItem does complete, and i see it deleted from the WorkItemInfo table. \
However, since the process instance state has been reloaded with a value of '0', the \
"Bye" script task is never fired.

Any ideas? A full code dump would be huge, but I'm happy to inject some loggers if it \
would assist troubleshooting.

Thanks!

Franco
--------------------------------------------------------------

Reply to this message by going to Community
[https://community.jboss.org/message/825366#825366]

Start a new discussion in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2034]



[Attachment #5 (text/html)]

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; \
margin: 0; padding: 20px;">

<div>
	<table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: \
1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; \
-webkit-border-radius: 6px;">  <tbody>
			<tr>

				<td>

					<table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" \
style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: \
6px; -webkit-border-radius: 6px;">  <tbody>
							<tr>
								<td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px \
solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; \
-moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; \
                -webkit-border-top-left-radius: 5px;">
									<h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; \
                margin: 0; display: block !important;">
									<!-- To have a header image/logo replace the name below with your img tag \
                -->
									<!-- Email clients will render the images when the message is read so any \
                image -->
									<!-- must be made available on a public server, so that all recipients can \
                load the image. -->
									<a href="https://community.jboss.org/index.jspa" style="text-decoration: \
none; color: #E1E1E1">JBoss Community</a></h1>  </td>

							</tr>
							<tr>
								<td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; \
color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; \
-moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; \
-webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: \
17px; font-weight: normal;">  jBPM 5.4, Persistence, and Safe-Points
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="https://community.jboss.org/people/franco.gasperino">Franco \
Gasperino</a> in <i>jBPM</i> - <a \
href="https://community.jboss.org/message/825366#825366">View the full discussion</a> \
</span> <hr style="margin: 20px 0; border: none; background-color: #dadada; height: \
1px;">

<div class="jive-rendered-content"><p>Community,</p><p style="min-height: 8pt; \
height: 8pt; padding: 0px;">&#160;</p><p>Excuse the long-winded post. I'm trying to \
debug an issue with an integration project with the following components:</p><p \
style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><ul><li>jBPM 5.4 final, \
Drools 5.5 final</li><li>Spring 3.2.x</li><li>Bitronix 2.1.x</li></ul><p \
style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>The core jBPM engine \
is heavily integrated with a custom stack allowing process instances to be created \
and run via all sorts of connectivity. The custom layer will take the process id \
&amp; input parameters, delegate to a thread in an executor, which will:</p><p \
style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><ol><li>Instantiate the \
drools environment (with JTA support).</li><li>Create the knowledge \
session.</li><li>Create a custom WorkItemHandler, associate each custom service task \
with this handler.</li><li>Create and associate the event handlers.</li><li>Create \
and start the process instance.</li></ol><p style="min-height: 8pt; height: 8pt; \
padding: 0px;">&#160;</p><p>Everything executes as-expected, the JTA is performing \
commits and I can see the Hibernate activity inserting, updating, and deleting \
records from the Derby XA database.</p><p style="min-height: 8pt; height: 8pt; \
padding: 0px;">&#160;</p><p>However, when testing a process instance which *should* \
trigger a safe-point, i see unexpected behavior. In this case:</p><p \
style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><ul><li>Script "Hello" \
is a java/groovy/whatever script task.</li><li>ServiceTask "MockAsyncTask" is a java \
class, which is associated / registered with the custom WorkItemHandler. \
<ul><li>executeWorkItem() does NOT call completeWorkItem()</li><li>Returns control to \
the jBPM engine, which should trigger a safe-point.</li><li>Causes return of \
startProcessInstance(), which will exit the worker thread in the \
executor.</li></ul></li><li>Script "Bye" is a java/groovy/whatever script \
task.</li></ul><p style="min-height: 8pt; height: 8pt; padding: \
0px;">&#160;</p><p>The workflow: Start -&gt; Hello -&gt; MockAsyncTask -&gt; Bye \
-&gt; End</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>As \
expected, I see the behavior. I see that the ProcessInstance object associated has a \
state field of "2", which is active. Howevever, the hibernate update statements on \
the ProcessInstanceInfo table always have a state value of '0'. This is the breaking \
behavior.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>When \
I attempt to call the adapter layer with the session id, process instance id, work \
item id, and a payload:</p><p style="min-height: 8pt; height: 8pt; padding: \
0px;">&#160;</p><ol><li>Instantiate the drools environment (JTA \
support).</li><li>Load the existing knowledge session.</li><li>Create a custom \
WorkItemHandler, associate each custom service task with this handler.</li><li>Create \
and associate event handlers.</li><li>Call completeWorkItem().</li></ol><p \
style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>The workItem does \
complete, and i see it deleted from the WorkItemInfo table. However, since the \
process instance state has been reloaded with a value of '0', the "Bye" script task \
is never fired.</p><p style="min-height: 8pt; height: 8pt; padding: \
0px;">&#160;</p><p>Any ideas? A full code dump would be huge, but I'm happy to inject \
some loggers if it would assist troubleshooting.</p><p style="min-height: 8pt; \
height: 8pt; padding: 0px;">&#160;</p><p>Thanks!</p><p style="min-height: 8pt; \
height: 8pt; padding: 0px;">&#160;</p><p>Franco</p></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a \
href="https://community.jboss.org/message/825366#825366">going to Community</a></p>  \
<p style="margin: 0;">Start a new discussion in jBPM at <a \
href="https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2034">Community</a></p>
 </div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>



_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic