Re: ActiveMQ freeze

2019-04-02 Thread mcrandy
I have added parts of it that I think is of most interest but I will try to add all of it as well. We have considered to upgrade but it will be a VERY cumbersome process for us so it's kind of our last resort. -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

Re: ActiveMQ freeze

2019-04-02 Thread Tim Bain
The thread dump didn't make it into your message. Can you please re-send it? Also, does this problem occur if you upgrade to a version of ActiveMQ that was released recently? 5.6.0 is nearly seven years old, and there's not much appetite for debugging hard-to-reproduce problems in old software. T

Re: ActiveMQ freeze

2019-04-02 Thread mcrandy
sorry, introducing some new *connection* pools, not "thread pools" -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

ActiveMQ freeze

2019-04-02 Thread mcrandy
Hi! Wen have a problem that we have been struggling with for a while. Every now and then we experience total freezez of ActiveMQ. Producers can't produce messages, consumers will not consume and we can't even browse the queues using the web console when this occurs. We're running ActiveMQ 5.6.

Re: setTimetoLive does not work, set DeadLetterQueue for exceeding maximum redelivery also does not work

2019-04-02 Thread Tim Bain
A few things, in response to the various messages sent today. First, it's definitely possible to set timeToLive for topic messages. Per the JMS spec, TTL is implemented as a header on the message, and you can set it ( https://docs.oracle.com/javaee/7/api/javax/jms/MessageProducer.html#setTimeToLiv

Re: Discarded messages and Expired messages.

2019-04-02 Thread Tim Bain
Bob, So if I'm understanding correctly, you're concerned that there might be existing messages in the DLQ at the time you enabled the discardingDLQBrokerPlugin, and you want a way to clear out those pre-existing messages. Your use of the discardingDLQBrokerPlugin already ensures that any new messa

Re: ActiveMQ Artemis Create connection Timeout

2019-04-02 Thread Howard Gao
I think you mean connection ttl? If you use core api, you can use ServerLocator.setConnectionTTL(). On Tue, Apr 2, 2019 at 3:26 AM PedroRP wrote: > Hi all! > > Is it possible to set a timeout to create a connection from a connection > factory on an ActiveMQ Artemis broker? I have looked for it

Re: Error occured while processing sync command: ActiveMQTextMessage

2019-04-02 Thread Tim Bain
Do you have 170 TCP connections, or is it just the broker that believes that there are that many? The fact that the broker is seeing an EOFException means that the client is closing the connection, so I'd focus on your consumers. I know you said you don't think they're having errors, but that's wh

Error occured while processing sync command: ActiveMQTextMessage

2019-04-02 Thread jayh
Can anyone please help me understand this error which has only just started showing up out of nowhere on a production server. This is the current version of AMQ (5.15.9) and was also seen in the previous version 5.15.8. Its a local broker with a JMS bridge to a remote server connecting and consumi

Re: setTimetoLive does not work, set DeadLetterQueue for exceeding maximum redelivery also does not work

2019-04-02 Thread W.Y
I tried the deadLetterQueue setting for Queue works but for topic does not work ,after message expired in topic. it will not be moved to configured deadLetterQueue. below is my setting in xml, any hints or suggestions?

Re: IllegalStateException: Cannot find binding

2019-04-02 Thread Sami Nieminen
Solved this problem with the following kind of addition to broker configuration: true true MULTICAST true No more binding errors after this. -- Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html