Connection pooling
WebSphere MQ classes for Java provides additional support for applications that deal with multiple connections to WebSphere MQ queue managers. When a connection is no longer required, instead of destroying it, it can be pooled and later reused. This can provide a substantial performance enhancement for applications and middleware that connect serially to arbitrary queue managers.
WebSphere MQ provides a default connection pool. Applications can activate or deactivate this connection pool by registering and deregistering tokens through the MQEnvironment class. If the pool is active when WebSphere MQ base Java constructs an MQQueueManager object, it searches this default pool and reuses any suitable connection. When an MQQueueManager.disconnect() call occurs, the underlying connection is returned to the pool.
Alternatively, applications can construct an MQSimpleConnectionManager connection pool for a particular use. Then, the application can either specify that pool during construction of an MQQueueManager object, or pass that pool to MQEnvironment for use as the default connection pool.
Also, WebSphere MQ base Java provides a partial implementation of the Java 2 Platform Enterprise Edition (J2EE) Connector Architecture. Applications running under a Java 2 v1.3 JVM with JAAS 1.0 (Java Authentication and Authorization Service) can provide their own connection pool by implementing the javax.resource.spi.ConnectionManager interface. Again, this interface can be specified on the MQQueueManager constructor, or specified as the default connection pool.
Controlling the default connection pool
Consider the following example application, MQApp1:
import com.ibm.mq.*; public class MQApp1 { public static void main(String[] args) throws MQException { for (int i=0; i<args.length; i++) { MQQueueManager qmgr=new MQQueueManager(args[i]); : : (do something with qmgr) : qmgr.disconnect(); } } }MQApp1 takes a list of local queue managers from the command line, connects to each in turn, and performs some operation. However, when the command line lists the same queue manager many times, it is more efficient to connect only once, and to reuse that connection many times.
WebSphere MQ base Java provides a default connection pool that you can use to do this. To enable the pool, use one of the MQEnvironment.addConnectionPoolToken() methods. To disable the pool, use MQEnvironment.removeConnectionPoolToken().
The following example application, MQApp2, is functionally identical to MQApp1, but connects only once to each queue manager.
import com.ibm.mq.*; public class MQApp2 { public static void main(String[] args) throws MQException { MQPoolToken token=MQEnvironment.addConnectionPoolToken(); for (int i=0; i<args.length; i++) { MQQueueManager qmgr=new MQQueueManager(args[i]); : : (do something with qmgr) : qmgr.disconnect(); } MQEnvironment.removeConnectionPoolToken(token); } }The first bold line activates the default connection pool by registering an MQPoolToken object with MQEnvironment.
The MQQueueManager constructor now searches this pool for an appropriate connection and only creates a connection to the queue manager if it cannot find an existing one. The qmgr.disconnect() call returns the connection to the pool for later reuse. These API calls are the same as the sample application MQApp1.
The second highlighted line deactivates the default connection pool, which destroys any queue manager connections stored in the pool. This is important because otherwise the application would terminate with a number of live queue manager connections in the pool. This situation could cause errors that would appear in the queue manager logs.
The default connection pool stores a maximum of ten unused connections, and keeps unused connections active for a maximum of five minutes. The application can alter this (for details, see Supplying a different connection pool).
Instead of using MQEnvironment to supply an MQPoolToken, the application can construct its own:
MQPoolToken token=new MQPoolToken(); MQEnvironment.addConnectionPoolToken(token);Some applications or middleware vendors provide subclasses of MQPoolToken in order to pass information to a custom connection pool. They can be constructed and passed to addConnectionPoolToken() in this way so that extra information can be passed to the connection pool.
The default connection pool and multiple components
MQEnvironment holds a static set of registered MQPoolToken objects. To add or remove MQPoolTokens from this set, use the following methods:
- MQEnvironment.addConnectionPoolToken()
- MQEnvironment.removeConnectionPoolToken()
An application might consist of many components that exist independently and perform work using a queue manager. In such an application, each component should add an MQPoolToken to the MQEnvironment set for its lifetime.
For example, the example application MQApp3 creates ten threads and starts each one. Each thread registers its own MQPoolToken, waits for a length of time, then connects to the queue manager. After the thread disconnects, it removes its own MQPoolToken.
The default connection pool remains active while there is at least one token in the set of MQPoolTokens, so it will remain active for the duration of this application. The application does not need to keep a master object in overall control of the threads.
import com.ibm.mq.*; public class MQApp3 { public static void main(String[] args) { for (int i=0; i<10; i++) { MQApp3_Thread thread=new MQApp3_Thread(i*60000); thread.start(); } } } class MQApp3_Thread extends Thread { long time; public MQApp3_Thread(long time) { this.time=time; } public synchronized void run() { MQPoolToken token=MQEnvironment.addConnectionPoolToken(); try { wait(time); MQQueueManager qmgr=new MQQueueManager("my.qmgr.1"); : : (do something with qmgr) : qmgr.disconnect(); } catch MQException(mqe) {System.err.println("Error occurred!");} catch (InterruptedException ie) {} MQEnvironment.removeConnectionPoolToken(token); } }
Supplying a different connection pool
This section describes how to use the class com.ibm.mq.MQSimpleConnectionManager to supply a different connection pool. This class provides basic facilities for connection pooling, and applications can use this class to customize the behavior of the pool.
Once it is instantiated, an MQSimpleConnectionManager can be specified on the MQQueueManager constructor. The MQSimpleConnectionManager then manages the connection that underlies the constructed MQQueueManager. If the MQSimpleConnectionManager contains a suitable pooled connection, that connection is reused and returned to the MQSimpleConnectionManager after an MQQueueManager.disconnect() call.
The following code fragment demonstrates this behavior:
MQSimpleConnectionManager myConnMan=new MQSimpleConnectionManager(); myConnMan.setActive(MQSimpleConnectionManager.MODE_ACTIVE); MQQueueManager qmgr=new MQQueueManager("my.qmgr.1", myConnMan); : : (do something with qmgr) : qmgr.disconnect(); MQQueueManager qmgr2=new MQQueueManager("my.qmgr.1", myConnMan); : : (do something with qmgr2) : qmgr2.disconnect(); myConnMan.setActive(MQSimpleConnectionManager.MODE_INACTIVE);The connection that is forged during the first MQQueueManager constructor is stored in myConnMan after the qmgr.disconnect() call. The connection is then reused during the second call to the MQQueueManager constructor.
The second line enables the MQSimpleConnectionManager. The last line disables MQSimpleConnectionManager, destroying any connections held in the pool. An MQSimpleConnectionManager is, by default, in MODE_AUTO, which is described later in this section.
An MQSimpleConnectionManager allocates connections on a most-recently-used basis, and destroys connections on a least-recently-used basis. By default, a connection is destroyed if it has not been used for five minutes, or if there are more than ten unused connections in the pool. You can alter these values using:
- MQSimpleConnectionManager.setTimeout()
- MQSimpleConnectionManager.setHighThreshold()
You can also set up an MQSimpleConnectionManager for use as the default connection pool, to be used when no Connection Manager is supplied on the MQQueueManager constructor.
The following application demonstrates this:
import com.ibm.mq.*; public class MQApp4 { public static void main(String[] args) { MQSimpleConnectionManager myConnMan=new MQSimpleConnectionManager(); myConnMan.setActive(MQSimpleConnectionManager.MODE_AUTO); myConnMan.setTimeout(3600000); myConnMan.setHighThreshold(50); MQEnvironment.setDefaultConnectionManager(myConnMan); MQApp3.main(args); } }The bold lines set up an MQSimpleConnectionManager. This is set to:
- Destroy connections that have not been used for an hour
- Limit the number of unused connections held in the pool to 50
- MODE_AUTO (the default). This means that the pool is active only if it is the default connection manager, and there is at least one token in the set of MQPoolTokens held by MQEnvironment.
The new MQSimpleConnectionManager is then set as the default connection manager.
In the last line, the application calls MQApp3.main(). This runs a number of threads, where each thread uses WebSphere MQ independently. These threads use myConnMan when they forge connections.
Supplying your own ConnectionManager
Under Java 2 v1.3, with JAAS 1.0 installed, applications and middleware providers can provide alternative implementations of connection pools. WebSphere MQ base Java provides a partial implementation of the J2EE Connector Architecture. Implementations of javax.resource.spi.ConnectionManager can either be used as the default Connection Manager or be specified on the MQQueueManager constructor.
WebSphere MQ base Java complies with the Connection Management contract of the J2EE Connector Architecture. Read this section in conjunction with the Connection Management contract of the J2EE Connector Architecture (refer to Sun's Web site at http://java.sun.com).
The ConnectionManager interface defines only one method:
package javax.resource.spi; public interface ConnectionManager { Object allocateConnection ManagedConnectionFactory(mcf, ConnectionRequestInfo cxRequestInfo); }The MQQueueManager constructor calls allocateConnection on the appropriate ConnectionManager. It passes appropriate implementations of ManagedConnectionFactory and ConnectionRequestInfo as parameters to describe the connection required.
The ConnectionManager searches its pool for a javax.resource.spi.ManagedConnection object that has been created with identical ManagedConnectionFactory and ConnectionRequestInfo objects. If the ConnectionManager finds any suitable ManagedConnection objects, it creates a java.util.Set that contains the candidate ManagedConnections. Then, the ConnectionManager calls the following:
ManagedConnection mc=mcf.matchManagedConnections(connectionSet, subject, cxRequestInfo);The WebSphere MQ implementation of ManagedConnectionFactory ignores the subject parameter. This method selects and returns a suitable ManagedConnection from the set, or returns null if it does not find a suitable ManagedConnection. If there is not a suitable ManagedConnection in the pool, the ConnectionManager can create one by using:
ManagedConnection mc=mcf.createManagedConnection(subject, cxRequestInfo);Again, the subject parameter is ignored. This method connects to a WebSphere MQ queue manager and returns an implementation of javax.resource.spi.ManagedConnection that represents the newly-forged connection. Once the ConnectionManager has obtained a ManagedConnection (either from the pool or freshly created), it creates a connection handle using:
Object handle=mc.getConnection(subject, cxRequestInfo);This connection handle can be returned from allocateConnection().
A ConnectionManager must register an interest in the ManagedConnection through:
mc.addConnectionEventListener()The ConnectionEventListener is notified if a severe error occurs on the connection, or when MQQueueManager.disconnect() is called. When MQQueueManager.disconnect() is called, the ConnectionEventListener can do either of the following:
- Reset the ManagedConnection using the mc.cleanup() call, then return the ManagedConnection to the pool
- Destroy the ManagedConnection using the mc.destroy() call
If the ConnectionManager is the default ConnectionManager, it can also register an interest in the state of the MQEnvironment-managed set of MQPoolTokens. To do so, first construct an MQPoolServices object, then register an MQPoolServicesEventListener object with the MQPoolServices object:
MQPoolServices mqps=new MQPoolServices(); mqps.addMQPoolServicesEventListener(listener);The listener is notified when an MQPoolToken is added or removed from the set, or when the default ConnectionManager changes. The MQPoolServices object also provides a way to query the current size of the set of MQPoolTokens.
WebSphere is a trademark of the IBM Corporation in the United States, other countries, or both.
IBM is a trademark of the IBM Corporation in the United States, other countries, or both.