You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@activemq.apache.org by matousvoldrich <ma...@voldrich.net> on 2013/12/02 09:43:02 UTC

Re: ActiveMq 5.9 stuck messages on store full

So the problem disappeared after I set the queue prefetch to one on consumer
connection factory:

ActiveMQPrefetchPolicy prefetchPolicy =
connectionFactory.getPrefetchPolicy();
    prefetchPolicy.setQueuePrefetch(1);
    connectionFactory.setPrefetchPolicy(prefetchPolicy);

So my problem is solved and all messages are now properly delivered. But I
still wonder whether this is a bug in  ActiveMq?



--
View this message in context: http://activemq.2283324.n4.nabble.com/ActiveMq-5-9-stuck-messages-on-store-full-tp4674917p4674985.html
Sent from the ActiveMQ - User mailing list archive at Nabble.com.