All Questions
7 questions
1
vote
0
answers
138
views
2 phase commit data consistency when one node crashes or is slow during commit phase
In 2 phase commit, lets say one of the nodes crashes or is slow during the commit phase and the other nodes have already successfully committed their changes. Now if a query is issued to one of those ...
0
votes
1
answer
593
views
MuleSoft: XA Transaction management for two different REST Call
We have a situation where we need to manage db transaction across multiple rest api call.
In traditional example where new customer is registered, ordered, and payment done with different micro ...
1
vote
1
answer
949
views
Minimum version of IBM websphere MQ supporting XA transactions
I want to use XA complaint IBM Websphere MQ. What is the minimum version of Websphere MQ supporting this feature of distributed transaction?.
Additionally I will be using IBM MQ classes for JMS
6
votes
1
answer
3k
views
Is it safe to set Hibernate after_transaction as a JTA connection release mode when using Bitronix Transcation Manager?
According to Hibernate docs, in a JTA environment the default connection release mode is after_statement, meaning that after each statement the hibernate logical connection is released.
When the ...
1
vote
2
answers
8k
views
java.sql.SQLException: could not use local transaction commit in a global transaction
We are having two instances of oracle (two physical machines) and one schema for our application.
we are using weblogic application server. application uses datasource for which XA transaction is ...
2
votes
1
answer
1k
views
XA transactions in Spring Batch
I'm writing a number of batch jobs with Spring Batch which mostly do export/import from/to database.
The Spring Batch job repository database and target database(from/to which I'm read/write data) are ...
4
votes
2
answers
3k
views
Does JTA work across multiple threads?
From JTA specs i understand that it works (or supports) distributed transactions only for calling thread. Does this mean that transactions cannot be spanned across multiple threads? Or it depends on ...