Provide a setting to bring under the same transaction the DB operation and the JMS queue
Description
Attachments
is duplicated by
is followed up by
Activity
Emmanuel BernardJuly 3, 2015 at 8:30 AM
A note, we won't be able to mix transactional backends and non transactional backends in the same transaction because the Worker
has to either do the processing work before or after the transaction. We don't feel the use case for mixed modes strong enough. We can revisit if someone comes with the requirement.

Sanne GrinoveroJune 30, 2015 at 6:22 PM
Considering points 1 and 4 are essentially done, we only need the option to change the backend execution to run within the transaction and some tests.
Emmanuel BernardJune 8, 2015 at 8:29 AM
The attachement contains the code that enlist the JMS queue in the current transaction. Contributed by Yoann Gendre.
Emmanuel BernardJune 2, 2015 at 7:43 PM
To fully implement this approach we need to:
enlist the JMS message publication in the transaction (and not via autocommit)
move the execution of the backend from
afterTransaction
tobeforeTransaction
but after Hibernate ORM's flush so that the list of changes are complete but that the JMS messages are sent in the transaction.offer an option of the JMS backend to use this transactional approach
make sure that if the transactional approach is used, all messages are sent in the same thread used by the main application (risk of transaction problems otherwise).
As discussed on the call with Grant
PostTransactionWorkQueue sync: if we support TX in the backend, perform also the next operation in prepare.