<!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;">
    How to avoid StaleObjectExceptions on asynchronous process
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="https://community.jboss.org/people/fosoriog">Francisco Osorio</a> in <i>jBPM</i> - <a href="https://community.jboss.org/message/756581#756581">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>I have a process that uses an asyncrhonous work item handler to execute several branches in parallel. I'm using JPAWorkingMemoryDbLogger to persist the log to the database.The issue is that the commit&#160; for the completeWorkItem invocation fails with StaleObjectException on those threads.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>It seems the completeWorkItem invocations are attempting to update the org.drools.persistence.info.SessionInfo entity, and it fails because a optimistick lock exception. (That entity was modified first when the session.startProcessInstance commited to the database).</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Here is the exception:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><pre class="jive-pre"><code class="jive-code jive-java">2012-08-28 15:13:20,962 [Thread-6]&#160; DEBUG (SQLStatementLogger.java:111) - update SessionInfo set lastModificationDate=?, rulesByteArray=?, startDate=?, OPTLOCK=? where id=? and OPTLOCK=?
org.hibernate.StaleStateException: Unexpected row count: 0; expected: 1
&#160;&#160;&#160; at org.hibernate.jdbc.Expectations$BasicExpectation.checkNonBatched(Expectations.java:102)
&#160;&#160;&#160; at org.hibernate.jdbc.Expectations$BasicExpectation.verifyOutcome(Expectations.java:67)
&#160;&#160;&#160; at org.hibernate.persister.entity.AbstractEntityPersister.check(AbstractEntityPersister.java:1774)
&#160;&#160;&#160; at org.hibernate.persister.entity.AbstractEntityPersister.update(AbstractEntityPersister.java:2425)
&#160;&#160;&#160; at org.hibernate.persister.entity.AbstractEntityPersister.updateOrInsert(AbstractEntityPersister.java:2325)
&#160;&#160;&#160; at org.hibernate.persister.entity.AbstractEntityPersister.update(AbstractEntityPersister.java:2625)
&#160;&#160;&#160; at org.hibernate.action.EntityUpdateAction.execute(EntityUpdateAction.java:115)
&#160;&#160;&#160; at org.hibernate.engine.ActionQueue.execute(ActionQueue.java:279)
&#160;&#160;&#160; at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:263)
&#160;&#160;&#160; at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:168)
&#160;&#160;&#160; at org.hibernate.event.def.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:321)
&#160;&#160;&#160; at org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:50)
&#160;&#160;&#160; at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:1028)
&#160;&#160;&#160; at org.hibernate.impl.SessionImpl.managedFlush(SessionImpl.java:366)
&#160;&#160;&#160; at org.hibernate.transaction.JDBCTransaction.commit(JDBCTransaction.java:137)
&#160;&#160;&#160; at org.hibernate.ejb.TransactionImpl.commit(TransactionImpl.java:54)
&#160;&#160;&#160; at org.springframework.orm.jpa.JpaTransactionManager.doCommit(JpaTransactionManager.java:512)
&#160;&#160;&#160; at org.springframework.transaction.support.AbstractPlatformTransactionManager.processCommit(AbstractPlatformTransactionManager.java:754)
&#160;&#160;&#160; at org.springframework.transaction.support.AbstractPlatformTransactionManager.commit(AbstractPlatformTransactionManager.java:723)
&#160;&#160;&#160; at com.mypackage.workflow.impl.jbpm.runtime.workitemhandlers.WebServiceWorkItemHandler$1.run(WebServiceWorkItemHandler.java:178)
&#160;&#160;&#160; at java.lang.Thread.run(Thread.java:662)
2012-08-28 16:16:21,779 [Thread-4]&#160; ERROR (AbstractFlushingEventListener.java:324) - Could not synchronize database state with session
org.hibernate.StaleObjectStateException: Row was updated or deleted by another transaction (or unsaved-value mapping was incorrect): [org.drools.persistence.info.SessionInfo#281]
&#160;&#160;&#160; at org.hibernate.persister.entity.AbstractEntityPersister.check(AbstractEntityPersister.java:1782)
&#160;&#160;&#160; at org.hibernate.persister.entity.AbstractEntityPersister.update(AbstractEntityPersister.java:2425)
&#160;&#160;&#160; at org.hibernate.persister.entity.AbstractEntityPersister.updateOrInsert(AbstractEntityPersister.java:2325)
&#160;&#160;&#160; at org.hibernate.persister.entity.AbstractEntityPersister.update(AbstractEntityPersister.java:2625)
&#160;&#160;&#160; at org.hibernate.action.EntityUpdateAction.execute(EntityUpdateAction.java:115)
&#160;&#160;&#160; at org.hibernate.engine.ActionQueue.execute(ActionQueue.java:279)
&#160;&#160;&#160; at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:263)
&#160;&#160;&#160; at org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:168)
&#160;&#160;&#160; at org.hibernate.event.def.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListener.java:321)
&#160;&#160;&#160; at org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:50)
&#160;&#160;&#160; at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:1028)
&#160;&#160;&#160; at org.hibernate.impl.SessionImpl.managedFlush(SessionImpl.java:366)
&#160;&#160;&#160; at org.hibernate.transaction.JDBCTransaction.commit(JDBCTransaction.java:137)
&#160;&#160;&#160; at org.hibernate.ejb.TransactionImpl.commit(TransactionImpl.java:54)
&#160;&#160;&#160; at org.springframework.orm.jpa.JpaTransactionManager.doCommit(JpaTransactionManager.java:512)
&#160;&#160;&#160; at org.springframework.transaction.support.AbstractPlatformTransactionManager.processCommit(AbstractPlatformTransactionManager.java:754)
&#160;&#160;&#160; at org.springframework.transaction.support.AbstractPlatformTransactionManager.commit(AbstractPlatformTransactionManager.java:723)
&#160;&#160;&#160; at com.mypackage.workflow.impl.jbpm.runtime.workitemhandlers.WebServiceWorkItemHandler$1.run(WebServiceWorkItemHandler.java:178)
&#160;&#160;&#160; at java.lang.Thread.run(Thread.java:662)
</code></pre><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I've seen this kind of issue reported in other discussions in the forum, but at the moment I don't think an answer has been given. It seems to be an issue in the jbpm persistence engine, but I might be mistaken and I might be&#160; doing something wrong.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>So, how could I avoid these exceptions?</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Thanks</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/756581#756581">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>