Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having a bit of trouble with understanding JMS from a performance perspective. We have this very straightforward code in our application:

QueueConnection connection = null;
QueueSession session = null;
QueueSender sender = null;
TextMessage msg = null;

try {
  // The JNDIHelper uses InitialContext to look up things
  QueueConnectionFactory qcf = JNDIHelper.lookupFactory();
  Queue destQueue = JNDIHelper.lookupQueue();

  // These objects are created for every message, which is quite slow
  connection = qcf.createQueueConnection();
  session = connection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
  sender = session.createSender(destQueue);

  // This is the actual message
  msg = session.createTextMessage(xmlMsg);
  sender.setTimeToLive(0);
  sender.send(msg);
} 
finally {

  // Close all objects again
  JMSUtilities.safeClose(sender);
  JMSUtilities.safeClose(session);
  JMSUtilities.safeClose(connection);
}

The code is correct, but probably some of the above artefacts could be reused for several messages. These are our configurations:

  • We use Oracle Weblogic 10.3.3
  • Weblogic connects to IBM MQ 7.0 (Problem also appears with 6.0) for JMS
  • The above logic is executed by a single thread on a backend server. It would be simple to keep some objects (QueueConnection, QueueSession, QueueSender) in memory as there is no concurrency involved.

My questions

  • Which types of objects can be shared among several messages? (of course we'd include error recovery, restoring those shared objects)
  • What are best practices to improve performance?
share|improve this question

2 Answers

up vote 5 down vote accepted

The only thing you need to create again and again is the msg itself - if you are sending to the same queue.

So yes, you can remember the Connection, Session and Sender.

share|improve this answer
yes, the Queue is always the same. So there is no drawback when keeping a session alive? Of course, we'd have failover logic restoring Connection, Session, and Sender in case they have disconnected.... – Lukas Eder Mar 29 '11 at 10:01

Define "to share".

If you mean to share among different threads this is very dangerous. You can safely share QueueConnectionFactory object as well as the JMS Connection object. You must not share Session, Sender/Consumer or Message objects. Thats the way how TIBCO EMS works I am not sure about IBM platform but I guess this is very same.

If you can be sure your "send" method is not called by different threads you can encapulate this into a MySender class with Connection, Session and Sender member variables. But watch out! Do properly close the resources on exit. Thats what Heiko Rupp recommends. Somthing like this:

class MySender {
    private QueueConnection connection = null;
    private QueueSession session = null;
    private QueueSender sender = null;

    public MySender(...) { /* initialize conn/sess/sender */ }

    public send(String xmlMsg) { /* sender.send(session.createTextMessage(xmlMsg)) */ }

    public close() { /* close all resources */ }
}

Regarding performance. There is no much room for improvement in JMS standard. Keep messages small and optimize server setting. Use durable destinations only when you need it etc. Read documentation for your platform. But on the client side there is not much room. Some platforms offers additional features to JMS that allows some extra performance gain (batch sends etc) but it depends on the platform. I dont know IBM.

share|improve this answer
@Izap: Check out my section about the configuration: The above logic is executed by a single thread on a backend server. I'm not sure whether you are right about your general assumption that the client side couldn't be optimised. After all, these are resources that are allocated and managed by the Weblogic server in cooperation with MQ... – Lukas Eder Mar 29 '11 at 11:59
1  
To say You should not share JMS Connection object is just wrong, from the Connection javadoc... Connections support concurrent use – Matt Mar 29 '11 at 12:36
@Matt, Izap distinguishes should not and must not, which makes sense in the way that Sessions are single-threaded objects, but Connections are not. I don't know why I shouldn't but it's not necessarily wrong for TIBCO, is it...? – Lukas Eder Mar 29 '11 at 12:42
@Matt: The JMS the specification does not say anything about thread safety. It depends on the implementation. But for Connections you are right. You can share it. – lzap Mar 29 '11 at 12:50
@Lukas Eder: you can share a Connection across n threads in Tibco without any problem at all. I do this on a system handling 000s of messages a second with latency in the low ms. Performance is not improved by going 1:1 session to connection. Some JMS implementations even exploit this (in an arguably dodgy way but still) to do client side fan out to reduce the total no of messages delivered. – Matt Mar 29 '11 at 12:51
show 5 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.