Re: what is the toot cause and how to resolve the error i.e javax.jms.JMSException: No buffer space available (maximum connections reached?

2014-09-10 Thread Filippo Balicchia
Hi Venkatesh, Did you try to increase the maximum number tcp/ip connections ? What OS you are using ? Regards --Filippo 2014-09-10 9:10 GMT+02:00 venkatesh : > Hi All, > > As i am getting below error when JMS getting stopped automatically with the > following error(It's happened twice as of now

Slow consumer detection and message time to live

2014-09-10 Thread Tim Bain
We're sending non-persistent messages to a topic where some consumers may sometimes be slow. We've configured a slowConsumerStrategy of AbortSlowConsumerStrategy to disconnect any consumers that happen to be slow. The detection of a slow consumer relies on there being at least 2x the consumer's p

what is the toot cause and how to resolve the error i.e javax.jms.JMSException: No buffer space available (maximum connections reached?

2014-09-10 Thread venkatesh
Hi All, As i am getting below error when JMS getting stopped automatically with the following error(It's happened twice as of now and that too only one day in business time). We are using Tomcat server in our application javax.jms.JMSException: No buffer space available (maximum connections reac

Re: what is the Root cause and how to resolve the error i.e javax.jms.JMSException: No buffer space available (maximum connections reached?

2014-09-10 Thread venkatesh
Is no one have any idea on the above mentioned scenario..Or else read my post..Is this forum actually helps for me? -- View this message in context: http://activemq.2283324.n4.nabble.com/what-is-the-Root-cause-and-how-to-resolve-the-error-i-e-javax-jms-JMSException-No-buffer-space-avail-tp4

Re: Apache.NMS: Missing API Version 1.6.0.3083 in downloads?

2014-09-10 Thread John_N
Hello, I would like to re-iterate the above question because my development team is implementing the same thing and I am running into the same error. Thanks, John -- View this message in context: http://activemq.2283324.n4.nabble.com/Apache-NMS-Missing-API-Version-1-6-0-3083-in-downloads-tp46

Re: Apache.NMS: Missing API Version 1.6.0.3083 in downloads?

2014-09-10 Thread John_N
After digging a little more, it appears that a workaround for this issue is to install the package using NuGet as shown here: https://www.nuget.org/packages/Apache.NMS/ Then you can use the library wherever you need it. -John -- View this message in context: http://activemq.2283324.n4.nabble.

Re: Queue memoryLimit parameter and weird behaviour with persistent messages (AMQ 5.10.0)

2014-09-10 Thread Jose María Zaragoza
Any idea ? Thanks 2014-09-06 13:43 GMT+02:00 Jose María Zaragoza : > > Hi: > > I'm using AMQ 5.10.0 and I'm trying to understand some behaviour about > destination memory limits > and how messages are managed in queues by AMQ > > I've defined a persistent broker ( kahaDB ) with > > producerFlo

JMS Exception in dlqDeliveryFailureCause

2014-09-10 Thread sumit.wattal
Lately we are seeing lot of messages getting into the DLQ in our ActiveMQ installation. We have a system based on ActiveMQ 5.6 and see tens of millions of messages flowing through ActiveMQ daily. The messages in DLQ belong to a particular queue which uses Transacted Ack mode and the failure cause f

Re: how about the performance of ActiveMQ MQTT transportConnector?

2014-09-10 Thread surfnerd
Your benchmarks are about right. QoS 1 should be slightly higher than that. What is the size of the message ? Which persistence storage are you using ? -- View this message in context: http://activemq.2283324.n4.nabble.com/how-about-the-performance-of-ActiveMQ-MQTT-transportConnector-tp468545

Re: ActiveMQ 5.8.0: java.io.EOFException: Chunk stream does not exist, page: 19 is marked free

2014-09-10 Thread Paul Gale
All of the following is assuming you're using Linux. I'm using RHEL 6.3 to mount an NFSv3 based device using autofs. I should have added that the issue for me was that I had specified the wrong block size values for the rsize/wsize parameters in the autofs mount configuration for the device I was

Re: Is it possible to add a property to a message prior to rollback?

2014-09-10 Thread Marc Boorshtein
Thats what I'm looking for to get the exception out of the failed message, but how do I set it when I fail the message? There's no arguments to the session.rollback() method and I don't see anything on the message its self. Any help is greatly appreciated. Thanks Marc On Wed, Sep 10, 2014 at 1

Re: ActiveMQ 5.8.0: java.io.EOFException: Chunk stream does not exist, page: 19 is marked free

2014-09-10 Thread Paul Gale
In my particular case I fixed it when I realized that I had the NFS mount settings for the mount where the KahaDB message store was located mis-configured. Since correcting the settings I've not had a single problem. Are you using NFS? Thanks, Paul On Tue, Sep 9, 2014 at 2:49 AM, khandelwalanuj

Re: Is it possible to add a property to a message prior to rollback?

2014-09-10 Thread Gary Tully
not really. Peek at https://github.com/apache/activemq/blob/d54e0d6ab590b6a6148a5e2629c45b95d3f40eb8/activemq-unit-tests/src/test/java/org/apache/activemq/MessageListenerRedeliveryTest.java#L285 for a unit test that covers the setting of the dlqDeliveryFailureCause property on a message in the DL

Is it possible to add a property to a message prior to rollback?

2014-09-10 Thread Marc Boorshtein
I'm trying to add a stacktrace to a message if its been rolled back as a property. Is this possible? Thanks Marc