Network Deployment (Distributed operating systems), v8.0 > Administer applications and their environment > Administer Service integration > Administer message stores > Administer data stores


Sharing connections to benefit from one-phase commit optimization

In some circumstances, you can configure your JMS application to share the JDBC connection that a messaging engine uses. Sharing connections enables you to use one-phase commit optimization. This can improve the performance of the application. Messaging engines store persistent data in a database, and use a JDBC data source to interact with that database. Some JMS applications also store persistent data in a database, for example if the application uses entity enterprise beans. Typically, such applications use two-phase commit transactions to coordinate updates to the JMS and JDBC resources involved.

We can configure the application to share the JDBC connection used by a messaging engine, which enables you to use one-phase commit transactions and improve the performance of the application. We can benefit from the one-phase commit optimization in the following circumstances:

Restriction: We cannot benefit from the one-phase commit optimization in the following circumstances:

Before you configure the system, ensure that you consider all of the components of your Java EE application that might be affected by one-phase commits.


Procedure

  1. Select the assured persistent reliability attribute for your JMS messages.
  2. Deploy all CMP enterprise beans involved in one-phase commit transactions with res-auth set to Container.
  3. Deploy all CMP enterprise beans involved in one-phase commit transactions where AccessIntent maps to a transaction isolation level of JDBC Read Committed. We can choose any of the following values for AccessIntent:

    • WSOptimisticUpdate
    • WSOptimisticRead
    • WSPessimisticUpdate-NoCollisions

    Oracle tip: All values for AccessIntent, except WSPessimisticUpdateExclusive, map to the JDBC Read Committed transaction isolation level.

    DB2 tip: We can use any value for AccessIntent, because WAS exploits the DB2 dynamic transaction isolation level support.

  4. Ensure that you use the same authentication alias for both your CMP enterprise beans and the messaging engine data store.
  5. When you configure your JDBC data source, ensure that you select the Use data source for CMP beans option.

  6. Set the value of the JDBC data source custom property jmsOnePhaseOptimization to true.

  7. Use the JMS connection factory or activation specification panels to select the Share data source with CMP option.
  8. When you create your JDBC provider and set the Select the implementation type field, ensure that you select Connection pool data source (and not XA data source).


Enable CMP entity beans and messaging engine data stores to share database connections

+

Search Tips   |   Advanced Search