How to ensure message acknowledge deletes only messages upto the message on which acknowledge is called in a jms broker. Currently I have a system which consumes from a jms queue and partially processes it.Sometime later a batch of these messages gets persisted by a different thread. I need to acknowledge on messages now. But the problem is I have to stop consuming the messages, otherwise acknowledging a previously received message will also acknowledge all other subsequent messages received.

In other words suppose I have 10 messages in a queue. I consume 7 of them, and then acknowledge on 5th message. This in turn removes all 7 messages received by consumer from the queue.Is there a way to only acknowledge and remove messages from queue till 5th message.

EDIT: I have tried creating two sessions and consuming from different sessions, but (with apache qpid atleast) this performs inconsistently. By inconsistently I mean, sometimes during the test it so happens that one consumer is able to receive messages, while the other doesn't receive at all, no matter how long you wait. This would have worked for me as a solution, but because of inconsistency can't use this as a solution.

link|improve this question

75% accept rate
You have not specified which message provider you are using. But as far as I know many messaging providers don't allow random message acknowledgement. If you acknowledge one message, all messages received till that point will also be acknowledged and removed from queue – Shashi Dec 6 '11 at 14:52
I use apache qpid, and I am not doing a random acknowledgement, but doing acknowledgment on a particular message. Its ok if all messages before that gets cleared, but if further messages have been received, they also get removed. – Raks Dec 6 '11 at 16:34
feedback

1 Answer

Acknowledging a message will make the queue manager to remove that message plus all other messages received before that message. It should not remove the messages which have not yet been received by an application. You may want to check your application on how you are acknowledging a message.

link|improve this answer
The problem is all messages received by consumer is removed, and its not dependent on the message you are acking on. I want to implement something which only removes upto a certain message, even though I might have received more messages after that. This is needed, because I process messages in batch, and whenever a batch processing is complete, I need to ack till that batch. And this batch processing is time consuming so I want to continue receiving messages in parallel – Raks Dec 8 '11 at 7:17
No, that's not possible. All received messages will be removed when one message is acked. You may need to look at alternatives. – Shashi Dec 12 '11 at 7:13
feedback

Your Answer

 
or
required, but never shown

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