Re: Expired messages are not being removed from queues

2010-11-05 Thread schow
Elliot Barlas wrote: > > Hey Michael, it turns out that the activemq broker actually does not > proactively purge expired messages from queues. The broker will not send > expired messages to consumers, but if there are no consumers consuming > from the queue, expired messages just sit. > FY

Re: HTTP Broker Transport Holding Dead Connections

2010-11-05 Thread schow
We encountered the memory leak being described (the client map in HttpTunnelServlet). In our case, we had an HTTP-based network of brokers on an unreliable network. The brokers would constantly reconnect to each other and eventually the client map caused an OOM. I've reported the issue and incl

Re: AMQ 5.4.1 activemq-core unit test failures

2010-11-05 Thread schow
Thanks very much for the info, Gary. The hint to run the tests individually should hopefully clear up any problems that I'm having in my environment. -- View this message in context: http://activemq.2283324.n4.nabble.com/AMQ-5-4-1-activemq-core-unit-test-failures-tp3029158p3029242.html Sent fro

AMQ 5.4.1 activemq-core unit test failures

2010-11-05 Thread schow
Hello, I'm running "mvn test" from the root directory of my sandbox: https://svn.apache.org/repos/asf/activemq/tags/activemq-5.4.1 The activemq-core project is failing on two unit tests and I'm wondering if the general rule is that all unit tests should pass or is it expected that some will fai

Is HttpTransport up-to-date?

2010-10-19 Thread schow
Hi, We're working through some issues with the HTTP transport when connecting a network of brokers over a periodically failing network. In the process, I've noticed that there are two implementations of the HTTP transport: HttpTransport and HttpClientTransport. HttpClientTransport was made the

Re: Configuring Distributed Queues in Store/Forward Network

2010-10-12 Thread schow
Dejan Bosanac wrote: > > You can set prefetchSize property on the network connector, which > should help with your use case. > See http://activemq.apache.org/networks-of-brokers.html for more details. > Unfortunately, setting the prefetchSize on the NetworkConnector URL does not change the beh

Re: Configuring Distributed Queues in Store/Forward Network

2010-10-08 Thread schow
> The prefetch limit determines how many messages can be sent to a > consumer to be processed. The default value for the queue prefetch > limit is 1000. Oftentimes this limit is fine for fast consumers that > never slow down, but it can easily flood a slow consumer. This is why > we recommend adju