You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by "metatech (JIRA)" <ji...@apache.org> on 2013/04/26 11:48:15 UTC

[jira] [Created] (AMQ-4489) Newly received messages with higher priority are never consumed, until broker is restarted

metatech created AMQ-4489:
-----------------------------

             Summary: Newly received messages with higher priority are never consumed, until broker is restarted
                 Key: AMQ-4489
                 URL: https://issues.apache.org/jira/browse/AMQ-4489
             Project: ActiveMQ
          Issue Type: Bug
          Components: Broker, Message Store
    Affects Versions: 5.5.1
         Environment: ServiceMix 4.4.2, using Camel producers/consumers
            Reporter: metatech


We configured message prioritization according to the following page :
http://activemq.apache.org/how-can-i-support-priority-queues.html
We use a JDBC adapter for message persistence, in an Oracle database.
We also specify a memory limit for the queue (24 MB)
We use ActiveMQ 5.5.1 within ServiceMix 4.4.2, and use Camel JMS producers/consumers.
Message can have 2 priorities : 4 (normal) for non-business hours and 9 (high) for business hours.

The scenario to reproduce the problem is the following : 
1. Enqueue 1000 "normal" and 1000 "high" messages.
2. All "high" messages are consumed first.
3. After a few "low" messages are consumed, enqueue additional 1000 "high" messages.
4. All "low" messages" are consumed before "high" messages.
5. All additional 1000 messages are never consumed.
6. Restart broker.
7. All additional 1000 messages start getting consumed.

In production, we have a producer with high peaks during the night (10,000-100,000 messages/hour), and 6 consumers (about 5,000-10,000 messages/hour), so the queue can reach 100,000-200,000 messages at some periods of the day. Messages are small (200 bytes).

We enabled SQL query tracing on the broker (with log4jdbc), and we see that the logic with which the "findNextMessagesByPriorityStatement" query is called does not seem correct in the "JDBCMessageStore.recoverNextMessages" method :

At step 2, we see the following query being executed :
SELECT ID, MSG FROM ACTIVEMQ_MSGS WHERE CONTAINER='priorityQueue' AND ((ID > 200 AND PRIORITY = 9) OR PRIORITY < 9) ORDER BY PRIORITY DESC, ID

At step 4, we see the following query being executed :
SELECT ID, MSG FROM ACTIVEMQ_MSGS WHERE CONTAINER='priorityQueue' AND ((ID > 1200 AND PRIORITY = 4) OR PRIORITY < 4) ORDER BY PRIORITY DESC, ID

The problem is that the value for the last priority stored in the  "lastRecoveredPriority" variable of the JDBCMessageStore stays permanently to 4, until step 6, where it is reset to 9.

We tried changing the priority to constant '9' in the query.  It works OK until step 3, where only 200 messages are consumed

Our understanding is that there should be one "lastRecoveredSequenceId" variable for each priority level, so that the last "consumed message but not yet removed from the DB" is memorized, and also the priority should probably also be reset to 9 every time the query is executed.

Can you have a look please ?


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira