Re: Spring configuration problem (without XBean)

2008-07-31 Thread BlueFox
wrote: > > with > are you sure it can find classpath:activemq.properties? > > > 2008/7/31 BlueFox <[EMAIL PROTECTED]>: >> >> I'm trying to configure my activemq embedded broker without spring but I >> can't seem to get it to work, can

Spring configuration problem (without XBean)

2008-07-31 Thread BlueFox
I'm trying to configure my activemq embedded broker without spring but I can't seem to get it to work, can someone tell me what I did wrong in the configuration? http://www.springframework.org/schema/beans"; xmlns:amq="http://activemq.apache.org/schema/core"; xmlns:xsi="http://www.w3.org

Re: Strange behaviour when broker ran out of disk space

2008-06-17 Thread BlueFox
in the AsyncDataManager.allocateLocation method to try and pre allocate the disk space. We believe that this will not have much impact on the performance as data file is 32MB default, but please feel free to advice otherwise as this is our first time looking at ActiveMQ source code. Regards,

Re: Broker often randomly dies

2008-06-17 Thread BlueFox
ActiveMQ 5.0 has a problem that it tries to keep around 2000 messages in the memory. So you'll have to make sure that you have enough memory assigned for it. Consider using ActiveMQ 5.1 as it does not have such problem. Regards, jpoloney wrote: > > I've been using ActiveMQ for a few months now

Re: Strange behaviour when broker ran out of disk space

2008-06-16 Thread BlueFox
BlueFox wrote: > > Hi, I'm encountering a strange behaviour on ActiveMQ 5.1 broker using > AMQStore for persistence. In my setup, an ActiveMQCPP (2.1.3) producer > with AUTO_ACKNOWLEDGE is sending persistent message to a queue, which is > being processed slowly on a consum

Strange behaviour when broker ran out of disk space

2008-06-14 Thread BlueFox
Hi, I'm encountering a strange behaviour on ActiveMQ 5.1 broker using AMQStore for persistence. In my setup, an ActiveMQCPP (2.1.3) producer with AUTO_ACKNOWLEDGE is sending persistent message to a queue, which is being processed slowly on a consumer using VMTransport on same VM as the broker. I d

Re: DefaultMessageListenerContainer and 5.1

2008-05-08 Thread BlueFox
ly and only terminates when the queue is empty. (Works in both 5.0 and 4.1.1) However, with new 5.1 binary I get 2 error behavior: 1. This queue monitor will terminate even if there is still data in the queue 2. Duplicate messages are delivered to consumer if monitor queue is used. BlueFox wrote:

DefaultMessageListenerContainer and 5.1

2008-05-08 Thread BlueFox
Hi I just upgraded to 5.1 and there seems to be a very weird behavior regarding the message redelivery. Before upgrade to 5.1, I had the Spring 2.5.3 and 5.0 running fine with the following setup. 1. I have a single producer sending and recording 100 persistent messages to a queue. 2. maximumRedel

tmp_storage created even with presistence turned on? (ActiveMQ 5.0)

2008-03-20 Thread BlueFox
Here's my broker configuration http://activemq.org/config/1.0"; persistent="true"> The AMQ message store store the persistent files in the dataDirectory I specified, however in my

How to config spring and activeMQ properly?

2007-09-17 Thread BlueFox
For my application, I need the message to be redelivered infinite times (exceptions etc) until the session is committed. My problem is the message will redeliver for a few times (3 ~ 6 times) and no more message will be processed for some reason. I find out there's MaximumRedeliveries in Redeliver

Anyway to elect a coordinator from a network of brokers?

2007-08-07 Thread BlueFox
Hi, I'm trying to build a distributed redundancy network where only one of the broker is suppose to produce message that will be consumed by all the consumers. We also require that a new coordinator to be elected immediately when the previous coordinator fails. JGroup has this ability of determine