Re: Help with Camel Config routing using a custom ActiveMQ Message Property

2016-06-23 Thread Quinn Stevenson
I had a similar use case in the past, and I chose to route the "trash" messages to a JMS Topic that didn't have any durable subscribers. That way I could create a subscriber when I needed it to see what was being "trashed" - just be careful you don't create a durable subscriber or the messages wil

Re: Difficulty porting example amqp/java publisher to new project

2016-06-23 Thread Tim Bain
If you take a thread dump after that last log line appears, where is it stuck? (Ideally post the full stack trace, if you can.) Also, is your second producer running on the same machine? Any chance the host simply isn't reachable due to routing/firewall/etc? On Jun 23, 2016 1:28 PM, "b4n4n4p4nd4

Re: Help with Camel Config routing using a custom ActiveMQ Message Property

2016-06-23 Thread Tim Bain
To trash a message, do not send it to a DLQ! DLQ != /dev/null. Instead, just ack the message after you consume it (without doing anything in response, just end the route or have your processor return null), which in the default Camel configuration happens automatically when your Camel route recei

Difficulty porting example amqp/java publisher to new project

2016-06-23 Thread b4n4n4p4nd4
Basic assumption about production requirements... we're supposed to be able to demonstrate that our project can send its messages out over amqp and have them received by a broker on tomEE. As best we can tell this implies the broker of choice is activemq and because of other requirements for being

kahaDB on vmQueueCursol

2016-06-23 Thread Naruhiro Yoneshige
Hi I got a question from my client. My system set the vmQueueCursol as follows: activemq.xml               I recognize this make the queue processing only memory. However the kahaDB is created and journal file is created without set the "storeUsage limit" parameter. My question

Re: kahadb.log files not cleaning up on scheduler store

2016-06-23 Thread Timothy Bish
On 06/22/2016 09:59 AM, abhijith wrote: Hi, We have deployed ActiveMQ v5.6 and it has been running for last 3 years. We are in the process of upgrading to Artemis, but facing an issue currently with deployed version. Can you clarify here, you mention Artemis but the question seems to relate on

Re: Help with Camel Config routing using a custom ActiveMQ Message Property

2016-06-23 Thread Hassen Bennour
Hello, You can route messages following messages properties with filtered destinations http://activemq.apache.org/virtual-destinations.html or camel http://activemq.apache.org/sample-camel-routes.html http://camel.apache.org/message-filter.html to trash a message i think you can route it to DLQ

Help with Camel Config routing using a custom ActiveMQ Message Property

2016-06-23 Thread daelliott
I've taken over a project in which everyone that knows anything is gone. I'm new to ActiveMQ and have never used Camel before. I'm trying to do content message routing and have a sample of what I'm attempting to do but have a couple of questions. * How to access a custom ActiveMQ message prop

Re: Queues with empty name appear in web console

2016-06-23 Thread Tim Bain
I personally have never seen this behavior on the projects where I've used 5.6.0, 5.8.0, and 5.9.1. Obviously those are different versions than the ones you're using, but in the two years I've been monitoring this list I've also never heard of anyone see this in any version. So since you can't pi