[jbossts-issues] [JBoss JIRA] (JBTM-1330) Extend the transaction boundary of the transaction manager embedded in a JDBC compliant database to other resources which can support two-phase commit semantics such as XAResources

Tom Jenkinson (JIRA) jira-events at lists.jboss.org
Wed Sep 18 06:10:03 EDT 2013


     [ https://issues.jboss.org/browse/JBTM-1330?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tom Jenkinson closed JBTM-1330.
-------------------------------


    
> Extend the transaction boundary of the transaction manager embedded in a JDBC compliant database to other resources which can support two-phase commit semantics such as XAResources
> ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: JBTM-1330
>                 URL: https://issues.jboss.org/browse/JBTM-1330
>             Project: JBoss Transaction Manager
>          Issue Type: Feature Request
>      Security Level: Public(Everyone can see) 
>          Components: Transaction Core
>            Reporter: Tom Jenkinson
>
> Where you multiplex the users application table and the transaction log in the same JDBC local transaction.
> LLR
> ===
> Resource 2 provides Coordinator
> Resource1 (xar1::prepare();) // sync 1
> Resource2 (ds1::insert(tmLog)
>            ds1::commit() // sync 2)
> Resource 1 (xar1::commit(); // sync 3)
> Resource 1 (ds1::delete(tmLog))
>             ds1::commit() // sync 4 (potentally lazy)
> XA
> ==
> Resource 1 (xar1::prepare(); // sync 1)
> Resource 2 (xar2::prepare(); // sync 2)
> Coordinator (insert(tmLog) // sync 3)
> Resource 1 (xar1::commit() // sync 4)
> Resource 2 (xar2::commit() // sync 5)
> Coordinator (delete(tmLog) // sync 6 (potentally lazy))

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the jbossts-issues mailing list