Provide a setting to bring under the same transaction the DB operation and the JMS queue

Description

As discussed on the call with Grant

PostTransactionWorkQueue sync: if we support TX in the backend, perform also the next operation in prepare.

Attachments

1

Activity

Show:

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 to beforeTransaction 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).

Fixed

Details

Assignee

Reporter

Components

Fix versions

Priority

Created January 18, 2011 at 11:48 PM
Updated July 13, 2015 at 11:35 AM
Resolved July 10, 2015 at 4:56 PM