Thanks Sandeep
Im more concerned about why this is happening, since I start AMQ 4.1.1
within Geronimo, rather than using it as a stand-alone app. As a result, I
want to make sure that my App server doesn't crash, as it now does !!!
Sandeep Chayapathi wrote:
>
> Try the following:
>
> 1.
I face the OOM errors running on 4.1 , IBM JRE 1.5 on a linux box
This has been reported in JIRA:
https://issues.apache.org/activemq/browse/AMQ-1205
Any clue where this might be happening ?
--
View this message in context:
http://www.nabble.com/Out-Of-Memory-ActiveMQ-4.1-tf3653590s2354.html#a1
I have hit an OOMError without using persistent messages, and even if AMQ is
inactive for a period of about a day or so.
[4/22/07 11:17:44:727 PDT] [WARN] - [GeronimoConnectionEventListener] -
connectionErrorOccurred called with null
javax.jms.JMSException: Channel was inactive for too long.
My MDB is in a long lived conversation state, and I have Authentication
Requests arriving on a Queue, which needs to be consumed and processed
immediately.
However I find that at a give time, only a few messages are consumed, and
some of the messages remain on the Queue without being consumed, ev
t getting consumed, Also on
> the forum ,
> Click on this link , it talks about messages being stuck on a queue.
> Hope this helps.
> http://www.nabble.com/Is-anyone-else-seeing-messages-stuck-on-a-queue--t
> f3027911.html#a8762238
>
> -Original Message-
> From
gt;
> On the Receiver side , make sure that you start the queue connection ,
> after you create the active MQ receiver . Some times the messages might
> be lost , if we start the queue connection , before creating the
> receiver.
>
> -Original Message-
> From: avin98
import java.io.IOException;
import java.util.Date;
import javax.jms.DeliveryMode;
import javax.jms.JMSException;
import javax.jms.Queue;
import javax.jms.QueueConnection;
import javax.jms.QueueSender;
import javax.jms.QueueSession;
import javax.jms.Session;
import javax.jms.TextMessage;
import ja
It looks as though every message posted onto the Queue actually makes
ActiveMQ slower. As the number of unconsumed messages in my queue increases
(say: 5 messages) causes a huge impact in terms of performance.
I set the delivery mode to be Non Persistent
sender.setDeliveryMode(DeliveryMode.NON_PE