Bug 1234806 - [GSS] (6.1.z) Race condition with multiple job executor threads on Oracle
Summary: [GSS] (6.1.z) Race condition with multiple job executor threads on Oracle
Keywords:
Status: CLOSED EOL
Alias: None
Product: JBoss BPMS Platform 6
Classification: Retired
Component: jBPM Core
Version: 6.1.0
Hardware: Unspecified
OS: Unspecified
high
high
Target Milestone: CR1
: 6.1.0
Assignee: Alessandro Lazarotti
QA Contact: Radovan Synek
URL:
Whiteboard:
Depends On: 1234592
Blocks: bpms6.1.3-payload
TreeView+ depends on / blocked
 
Reported: 2015-06-23 09:51 UTC by Martin Weiler
Modified: 2020-03-27 20:09 UTC (History)
1 user (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of: 1234592
Environment:
Last Closed: 2020-03-27 20:09:35 UTC
Type: Bug
Embargoed:


Attachments (Terms of Use)

Description Martin Weiler 2015-06-23 09:51:42 UTC
+++ This bug was initially created as a clone of Bug #1234592 +++

Description of problem:
When using AsyncWorkItemHandler with Oracle, a job can be picked up by two threads when the thread pool size is larger than 1. For queries which use rownum + for update, Hibernate issues not a single query, but breaks this up in two. This allows for the same job being processed by different AvailableJobsExecutor threads:

2015-06-21 12:53:58,489 DEBUG [org.jbpm.executor.impl.AvailableJobsExecutor] (EJB default - 10) Executor Thread org.jbpm.executor.impl.AvailableJobsExecutor@434eb850 Waking Up!!!
2015-06-21 12:53:58,489 DEBUG [org.jbpm.executor.impl.AvailableJobsExecutor] (EJB default - 9) Executor Thread org.jbpm.executor.impl.AvailableJobsExecutor@6d182f77 Waking Up!!!
2015-06-21 12:53:58,490 INFO  [stdout] (EJB default - 10) Hibernate: select * from ( select requestinf0_.id...) ) where rownum <= ?

2015-06-21 12:53:58,492 INFO  [stdout] (EJB default - 9) Hibernate: select * from ( select requestinf0_.id ...) ) where rownum <= ?

2015-06-21 12:53:58,556 INFO  [stdout] (EJB default - 10) Hibernate: select id from RequestInfo where id =? for update

2015-06-21 12:53:58,559 INFO  [stdout] (EJB default - 9) Hibernate: select id from RequestInfo where id =? for update

This shows that both threads can obtain the same job instance, as outlined in the related Hibernate issue:
"Yes it does allow a slight possibility that a row might be updated or locked between the initial select (paging) and the subsequent lock attempt." from https://hibernate.atlassian.net/browse/HHH-1168?focusedCommentId=48846&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-48846

Comment 4 Tomas Livora 2015-09-01 12:50:00 UTC
Verified on BPMS 6.1.3 CR1


Note You need to log in before you can comment on or make changes to this bug.