Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When to Use XA Datasource and Non XA Datasource

I'm trying to understand the use of Java XA Datasource. But I can't still figure when to use it, and when not to use it.

I read that XA Datasource used when we use two databases. But I'm not sure what is the meaning of two database.

For example:

I had two layer of classes (Service and DAO)

A method in service layer annotated as a transaction, invoke two methods in DAO.

Each method in DAO open new connection to database and close it in the end of the method.

If I use one instance of database, and each method in DAO write to different table, do I have to use XA Datasource? since transaction occured in service layer but only in one instance database

like image 226
lazulfikar Avatar asked Jan 25 '19 12:01

lazulfikar


People also ask

What is difference between XA and non XA datasource?

A non-XA data source is also known as a 1pc (one phase commit) data source. An XA data source is also known as a 2pc (two phase commit data source). A 1pc data source can be included in a transaction with 2pc data sources as long as you use the Last Participant Support (LPS) for the 1pc data source.

What is the difference between datasource and XA datasource?

An XA datasource is used instead of the datasource if the target Jboss application: Uses the Java Transaction API (JTA) Includes multiple database updates within a single transaction. Accesses multiple resources, such as a database and the Java Messaging Service (JMS), during a transaction.

What is the difference between connection pool datasource and XA datasource in Websphere?

XA Data Source-- its a data source where applications requires double phase commit transaction. connection pool data source-- where applications require single phase commit transactions.

What is the purpose of XA?

XA transactions are designed to allow distributed transactions, where a transaction manager (the application) controls a transaction which involves multiple resources. Such resources are usually DBMSs, but could be resources of any type.


1 Answers

Systems such as databases, but also for example queueing systems that you use through JMS have the concept of transactions. A transaction is treated as a unit of work; at the end of doing the work, such as inserting, updating or deleting records in the database, you commit the transaction and then the database definitively does the work; or you rollback the transaction and then everything done in the transaction is cancelled.

In some cases, your software has to perform operations over multiple different systems. For example, you might need to insert data into multiple databases, or insert something in the database and put a message on a queue.

If you want to do such combinations of operations as if they are in one transaction, then you need a distributed transaction system - a system that can combine the transactions of the different systems into one. That way you can write your code as if it's running inside a single transaction; the distributed transaction system automatically commits or rolls back the transactions in the underlying systems.

To make it more concrete: Suppose that you insert a record in a database, and put a message on a queue, and you want to do this inside one transaction. When something goes wrong with putting the message on the queue, you also want the database transaction to be rolled back, so that you don't have a record in the database but not a corresponding message on the queue. Instead of manually keeping track of the transactions of the database and the queue system (including handling all combinations of possible errors), you can use a distributed transaction system.

XA is a standard for working with distributed transactions. You can work with XA transactions in Java through the Java Transaction API (JTA). Java EE servers have support for this built-in. If you're not using a Java EE server, then you can use a separate library that implements JTA such as Narayana or Atomikos.

Each method in DAO open new connection to database and close it in the end of the method.

Normally this isn't how you should write DAOs. Opening a database connection is a relatively slow operation; if you open a new database connection for every method that you call in a DAO, your program is most like going to run slowly. You should at least use a connection pool, that manages a number of database connections and allows you to reuse already open connections.

If I use one instance of database, and each method in DAO write to different table, do I have to use XA Datasource? since transaction occured in service layer but only in one instance database

If your DAO methods each open their own connection, then they will run in separate transactions. Whether this is a problem or not depends on what your application needs to do. An XA datasource is not the solution to make them run in one transaction. Instead, you should both let them use the same connection and transaction.

XA transactions are really only useful if you are using multiple database systems or other systems, and you want to be able to perform transactions that span across these systems.

like image 154
Jesper Avatar answered Oct 24 '22 06:10

Jesper