Re: ActiveMQ and Camel Polling Consumer Thread Leak

2013-04-30 Thread ElwoodJones
Yeah, thanks, I'll do that tomorrow, however after some work today I'm pretty sure this is a camel issue rather than activemq. When I replace the use of the Camel consumer template with the spring JmsTemplate the problem goes away. Cheers On 30 Apr 2013 15:47, "ceposta [via ActiveMQ]" < ml-node+s2

Re: activemq.apache.org/jmx.html

2013-04-30 Thread Christian Posta
I yelled it out the window and that seemed to work for me :) So the section of the wiki you're referring to is meant for a "url configuration" ActiveMQ can be bootstrapped in many different ways, standalone, in a container (karaf, tomcat, etc), or others... but if you're doing, for example, an em

activemq.apache.org/jmx.html

2013-04-30 Thread gerryscat
The webpage http://activemq.apache.org/jmx.html says For url configuration broker:(tcp://localhost:61616)?useJmx=true But I have no idea what so ever what that refers to. Does it go in a file somewhere? Which file? Should I yell it out the window? I am *completely *lost. -- View this message

Re: Is AMQ-4118 really fixed?? Doubt it...

2013-04-30 Thread fenbers
I would LOVE to help, but I would have no idea how to replicate the problem.  If I could replicate the problem, I'd know what I needed to do to solve or work-around it.  The tests you pointed me to probably do eliminate the cause of that issue, but the problem pro

Re: Is AMQ-4118 really fixed?? Doubt it...

2013-04-30 Thread Christian Posta
If you could put together a test we can get to the bottom of it. Looks like Gary put together these tests to show AMQ-4118 was solved: https://fisheye6.atlassian.com/browse/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/usecases/DurableSubsOfflineSelectorConcurrentConsumeIndexUseT

Slow consumer(s) impact on Topic

2013-04-30 Thread deepak_a
All, For a Topic with multiple consumers, if one of the client is slow, it slows down other subscribers. The recommended approach is given here http://activemq.apache.org/slow-consumer-handling.html -> approach recommended is "discarding old messages" But I don't want to discard old messages ei

Is AMQ-4118 really fixed?? Doubt it...

2013-04-30 Thread fenbers
Regarding https://issues.apache.org/jira/browse/AMQ-4118, the report says this issue is fixed in 5.8.0, but I am running 5.8.0 and still have exactly the same 3 stack traces as listed in the URL above. Moreover, I have numbered .log files (journal files) that never get cleaned up automatically. T

Re: ActiveMQ crashes frequently

2013-04-30 Thread fenbers
Zagan wrote > Can you please check if your .log files in the /data directory are cleaned > up? On basis of the information I suppose this behaviour is due to a > misconfiguration of your clients. > If this is the case often broken log file cleanup is a symptom. I get the same error as brought up i

Re: Rate-limiting client polling

2013-04-30 Thread Christian Posta
You can probably do this with a reverse proxy in front of the broker? On Tue, Apr 30, 2013 at 8:08 AM, mikejkjr wrote: > We have an ActiveMQ instance set up with about 300 consumers reading from > persistent queues. These consumers are outside our network, so we're using > the HTTP tunneling fe

Rate-limiting client polling

2013-04-30 Thread mikejkjr
We have an ActiveMQ instance set up with about 300 consumers reading from persistent queues. These consumers are outside our network, so we're using the HTTP tunneling feature to communicate with the queues, using the JMS API. The problem we are seeing is that the consumers appear to be polling as

Re: Question about listeners performance

2013-04-30 Thread Christian Posta
how large is the heapdump? can you compress and attach? On Tue, Apr 30, 2013 at 1:34 AM, mvilleta wrote: > Does anyone have any suggestions for my problem? > > I'm sure I'm doing something wrong in my example, because I can't believe > that the activemq standard configuration and this example (t

Re: ActiveMQ and Camel Polling Consumer Thread Leak

2013-04-30 Thread Christian Posta
Want to wrap this up into a test case so I can look at it on my side? On Tue, Apr 30, 2013 at 5:22 AM, ElwoodJones wrote: > Hi There, > > I've been banging my head against an issue for a while now. I have a JCA > that picks messages up from a tcp socket, puts them onto a queue and then a > consu

Re: Query around ActiveMQ.DLQ

2013-04-30 Thread Christian Posta
Inline... On Tue, Apr 30, 2013 at 2:42 AM, marnold wrote: > Thanks Christian. > > (I work with Deepak.) > > In our system, Camel produces JMS messages from integrated endpoints, which > are consumed by EJB MDBs. The EJB application produces new JMS messages, > which are consumed by Camel to se

ActiveMQ and Camel Polling Consumer Thread Leak

2013-04-30 Thread ElwoodJones
Hi There, I've been banging my head against an issue for a while now. I have a JCA that picks messages up from a tcp socket, puts them onto a queue and then a consumer within the same JCA consumes them based upon a selector as below: Exchange receive = consumer.receive("activemq:queue:testQueue.r

Activemq network not reconnected when the router is down and up again, network connected only on startup

2013-04-30 Thread Raji
Client - Server Application with Activemq Messaging.Client sends the message to the server using Activemq and the messages are processed and reply messages are given to the client machine. It uses a daemon process on both client and server side, which has a hashmap list of all the Activemq connecti

Re: Query around ActiveMQ.DLQ

2013-04-30 Thread marnold
Thanks Christian. (I work with Deepak.) In our system, Camel produces JMS messages from integrated endpoints, which are consumed by EJB MDBs. The EJB application produces new JMS messages, which are consumed by Camel to send to other integrated endpoints (eg. WebSphere MQ). We use transacted ro

Re: Re:Re: Producer to temp queue gets blocked

2013-04-30 Thread rsteppac
Thanks guys. That worked. No more blocking for the last two days. Ralf -- View this message in context: http://activemq.2283324.n4.nabble.com/Producer-to-temp-queue-gets-blocked-tp4666234p4666443.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: amq 5.8.0 jar dependencies and junit testing

2013-04-30 Thread akr
I think I resolved it. To use "java.naming.provider.url = vm://localhost:61616?broker.persistent=false" in your junit tests, the following jars are required on the classpath (with amq-5.8.0): activemq-broker-5.8.0.jar activemq-client-5.8.0.jar activemq-openwire-legacy-5.8.0.jar hawtbuf-1.9.jar

Re: Question about listeners performance

2013-04-30 Thread mvilleta
Does anyone have any suggestions for my problem? I'm sure I'm doing something wrong in my example, because I can't believe that the activemq standard configuration and this example (too simple) couldn't be sustainable in time. Thanks -- View this message in context: http://activemq.2283324.n4

amq 5.8.0 jar dependencies and junit testing

2013-04-30 Thread akr
Hi I'm running junit tests with amq-5.8.0 like suggested in http://activemq.apache.org/how-to-unit-test-jms-code.html I'm using a jndi.properties with java.naming.provider.url = vm://localhost:61616?broker.persistent=false I have activemq-client-5.8.0.jar and activemq-broker-5.8.0.jar on the class

Re: Problem using NFSv4 for Shared File System Master Slave

2013-04-30 Thread Chen
I created a issue, hope someone can give me a hand, thanks. https://issues.apache.org/jira/browse/AMQ-4497 -- View this message in context: http://activemq.2283324.n4.nabble.com/Problem-using-NFSv4-for-Shared-File-System-Master-Slave-tp4666336p4666437.html Sent from the ActiveMQ - User mailing