Uploaded image for project: 'ActiveMQ Classic'
  1. ActiveMQ Classic
  2. AMQ-3846

The JMX message move, copy and remove operation do not take messages in FIFO order

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 5.5.1, 5.6.0
    • 5.7.0
    • JMX
    • None

    Description

      When a page is pulled in, it is placed in a LinkedHashMap which preserves the queue order, but the below code then pulls the values from the LinkedHashMap and puts them in a Set. This causes the FIFO order of the queue to be lost. If the number of max messages to move is smaller the the page size, then the outcome looks like random messages from the queue being moved (copied or removed).

      ...

      Set<MessageReference> set = new HashSet<MessageReference>();
      ConnectionContext context = createConnectionContext();
      do {
      doPageIn(true);
      pagedInMessagesLock.readLock().lock();
      try

      { set.addAll(pagedInMessages.values()); }

      finally

      { pagedInMessagesLock.readLock().unlock(); }

      ...

      Can this be changed to preserve the queue order?

      Attachments

        Activity

          People

            tabish Timothy A. Bish
            dlharp David Harp
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: