[jboss-user] [jBPM] - Re: jBPM Process Persistence Issue

Vadim Melnik do-not-reply at jboss.com
Fri Sep 30 03:32:44 EDT 2011


Vadim Melnik [http://community.jboss.org/people/vmdocua] created the discussion

"Re: jBPM Process Persistence Issue"

To view the discussion, visit: http://community.jboss.org/message/629494#629494

--------------------------------------------------------------
Hello Thomas,

This might be problem related to JBPM5 persistence mechanism design, things like ProcessInstanecInfo, WorkItemInfo serialized automatically by JPA. On long transaction it's possible that JPA+Hibernate flushes objects from JBPM session to  DB and mark this object as pesisted. Then JBPM code still continue to modify objects (process info, workitem info, logs etc), but these updates don't affect JPA session, so applying to JPA this object is not modified anymore. This is caused by specific design/implementation for presistance in JBPM.

If this is case - as temporary solution provide own EntityManagerFactory implementation and for each created EntityManager set "EntityManager.setFlushMode(FlushModeType.COMMIT)". This will prevent intermediate flushes and delay all JBPM/JPA persistence to DB calls to transaction commit time.  

--
Thanks,
Vadim.
--------------------------------------------------------------

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

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

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/jboss-user/attachments/20110930/5831914b/attachment.html 


More information about the jboss-user mailing list