Uploaded image for project: 'ActiveMQ Classic'
  1. ActiveMQ Classic
  2. AMQ-1176 Using temporary destination across a nework of broker not reliable.
  3. AMQ-2214

Announcement of new temporary queue may lose race with message pointing to it in network of brokers.

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Not A Problem
    • 5.2.0
    • None
    • Broker
    • None

    Description

      Scenario:

      • one well-known initiation queue is used by
      • clients and servers to
      • establish a private session using a pair of temporary queues:
        1. client creates temporary queue
        2. creates message with reply-to pointing to temporary queue
        3. sends message to initiation queue
        4. server receives initiation message
        5. creates temporary queue
        6. replys with handshake reply with reply-to pointing to second temporary queue
      • clients repeatedly exercise this chat scenario
      • communication is provided over a network of brokers which is established using auto discovery.

      Problem:

      When this scenario is executed over a network of brokers, sometimes the temporary queue has not yet been established thoughout the network of brokers when one of the partners already received a message with reply-to set to the temporary queue. This leads to exceptions like this:

      javax.jms.InvalidDestinationException: Cannot publish to a deleted Destination: temp-queue://ID:jh-xp-2-1250-1240304283337-2:0:378
      	at org.apache.activemq.ActiveMQSession.send(ActiveMQSession.java:1597)
      	at org.apache.activemq.ActiveMQMessageProducer.send(ActiveMQMessageProducer.java:227)
      	at org.apache.activemq.ActiveMQMessageProducerSupport.send(ActiveMQMessageProducerSupport.java:241)
      	at Client.chat(Client.java:46)
      	at Client.main(Client.java:78)
      

      The problem seems to be heavily timing-dependant as it is very hard to reproduce with several brokers running on the same machine. However, it is more easily reproduced with brokers running in separate virtual machines (VM as in VMWare) or even distributed across real hardware.

      Work-around

      A work-around for this problem (and the proof that the temporary queue "springs into existence" shortly after the exception is thrown) is depicted in the following retry code:

      int trys = 5;
      while (true)
      	try {
      		MessageProducer cp = s.createProducer(rq);
      		cp.send(s.createTextMessage(rr));
      		break;
      	} catch (InvalidDestinationException e) {
      		if (--trys > 0) {
      			logger.error("Got InvalidDestinationException - retrying " + trys, e);
      			Thread.sleep(100);
      			continue;
      		} else
      			throw e;
      	}
      

      Attachments

        1. Server.java
          3 kB
          Joerg O. Henne
        2. Client.java
          2 kB
          Joerg O. Henne
        3. broker.xml
          2 kB
          Joerg O. Henne

        Activity

          People

            Unassigned Unassigned
            hennejg Joerg O. Henne
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: