When you do a "normal" MQGET
on an MQ queue, my understanding is that expired messages (those whose expiry time have passed) will not be retrieved. Instead, they will be thrown away and the next message in the queue attempted.
My question has to do with correlated MQGET operations. Since they are specifically looking for a message with a given correlation ID, do they bypass the normal mechanism which would result in expired messages being discarded?
In other words, since they're looking for a specific message, do they just go straight for that message?
Obviously, if that message has expired, it will be discarded, my question has to do with the messages in the queue before that point.
An expired message will never be returned to your application whether you get it directly by MsgId or CorrelId, or whether you get-next to it.
Expired messages are cleared off the queue by an internal task as well as by passing MQGETs noticing them.
This is detailed here on developerWorks, where it states:
IBM also has a more official technote detailing the behaviour, located here, and stating: