Re: AMQP Client Hangs after abrupt disconnect

2016-04-11 Thread John D. Ament
Ok, I *think* I found the issue with master. I raised a PR if you want to take a look https://github.com/apache/activemq-artemis/pull/456 John On Mon, Apr 11, 2016 at 5:24 PM John D. Ament wrote: > Nope, master doesn't work either. Looks worse actually > >

Re: Automatic Queue Creation

2016-04-11 Thread John D. Ament
Justin, Its apparently all in the name. If I use "jms.queue.boop" it creates the queue. I suspect that Artemis needs to know what kind of destination to create in the name. John On Mon, Apr 11, 2016 at 5:59 PM Justin Bertram wrote: > I'm not sure what's going on in your

Need help with activemq_watch using nagios core 4.0.8

2016-04-11 Thread rutvik
Hi I have been working on activemq_watch using nagios core. i need 2 services for activemq_watch. How can i able to do that? Currently my command.cfg is define command{ command_namecheck_byssh_activemq_watch command_line$USER1$/check_by_ssh -H $HOSTADDRESS$ -E1 -t25

working on activemq_watch with nagios core 4.0.8

2016-04-11 Thread rutvik
Hi I have been working on activemq_watch using nagios core. i need 2 services for activemq_watch. How can i able to do that? Currently my command.cfg is define command{ command_namecheck_byssh_activemq_watch command_line$USER1$/check_by_ssh -H $HOSTADDRESS$ -E1 -t25 -l

Re: Automatic Queue Creation

2016-04-11 Thread Justin Bertram
I'm not sure what's going on in your use-case. As far as I can tell the "ActiveMQ Artemis Proton-J Example" example shipped in examples/protocols/amqp/queue uses an auto-created JMS queue without issue. That said, I've not worked with AMQP much. Justin - Original Message - From:

Re: Per-destination queue size limits

2016-04-11 Thread Matt Pavlovich
Have you tried using multi-kahadb to split out the badly performing queues in their own kaha db log space? This typically solves the issue for me without having to try to fight the problems that come with specifying a hard limit. http://activemq.apache.org/kahadb.html -Matt On 4/11/16 3:08

Re: AMQP Client Hangs after abrupt disconnect

2016-04-11 Thread John D. Ament
Nope, master doesn't work either. Looks worse actually 17:21:26,454 INFO [org.apache.activemq.artemis.core.server] AMQ221043: Protocol module found: [artemis-server]. Adding protocol support for: CORE 17:21:26,456 INFO [org.apache.activemq.artemis.core.server] AMQ221043: Protocol module

Re: AMQP Client Hangs after abrupt disconnect

2016-04-11 Thread John D. Ament
If that works (and building it locally) are there any plans to introduce a 1.2.1/1.3.0 soon? John On Mon, Apr 11, 2016 at 4:59 PM Clebert Suconic wrote: > I have fixed something similar to this on master (It was a dead lock). > > > Can you try against master or a

Re: AMQP Client Hangs after abrupt disconnect

2016-04-11 Thread Clebert Suconic
I have fixed something similar to this on master (It was a dead lock). Can you try against master or a snapshot? On Mon, Apr 11, 2016 at 4:24 PM, John D. Ament wrote: > I'm using Camel AMQP Component (which uses Qpid under the hood) to connect > to Artemis. Both are

Per-destination queue size limits

2016-04-11 Thread tstack
Hello, I'm trying to find a way to limit the sizes of queues that are storing persistent messages. The problem I'm facing right now is that one misbehaving queue can fill up the store which causes the other queues managed by the broker to stop functioning. Ideally, I would like to create a

AMQP Client Hangs after abrupt disconnect

2016-04-11 Thread John D. Ament
I'm using Camel AMQP Component (which uses Qpid under the hood) to connect to Artemis. Both are running locally on my mac. My routes are simply: from("amqp:queue:incoming").process(exchange -> { System.out.println(exchange.getIn().getBody()); });

Re: Automatic Queue Creation

2016-04-11 Thread John D. Ament
Thanks for the quick response Justin. I used the destination "jms.incoming" and got this error Setup of JMS message listener invoker failed for destination 'jms.incoming' - trying to recover. Cause: AMQ219010: source address does not exist [condition = amqp:internal-error] Note: this is all

Re: Automatic Queue Creation

2016-04-11 Thread Justin Bertram
The automatic queue creation currently only works for queues that being with "jms.". Justin - Original Message - From: "John D. Ament" To: users@activemq.apache.org Sent: Monday, April 11, 2016 1:50:52 PM Subject: Automatic Queue Creation Hey, I just spun up a

Automatic Queue Creation

2016-04-11 Thread John D. Ament
Hey, I just spun up a 1.2 artemis instance and was using the camel AMQP component to connect to it. I noticed that I couldn't create messages, with an error: Setup of JMS message listener invoker failed for destination 'incoming' - trying to recover. Cause: AMQ219010: source address does not

Re: Pooled connection factory does not work

2016-04-11 Thread Michele
Hi, first of all thanks a lot for your support. I reset project configuration and it seems work fine as you can see from screenshot attached pooled-connection.png . I used prefetchSize=0 with this activemq.xml

AmctiveMQ CMS build with Openssl static libs

2016-04-11 Thread Sidg18
Hi, I am new to ActiceMQ and would like to build AMQ with OpenSSL support. I have gone through some posts about how to build it and found that we need to enable it by changing the ./configure or using HAVE_SSL in windows. However, I have the openssl static libs with me and I would like to link

Re: ActiveMQ with KahaDB as persistent store becomes very slow (almost unresponsive) after creating large no (25000+) of Topics

2016-04-11 Thread Tim Bain
Sounds good. A profiler (as opposed to a sampler) should be able to tell you how many times a given method is called, so if you see that that's 1, then you'd be able to make the claim that a single call to updateIndex() is taking 3.5 minutes. But looking only at thread dumps, all you can say is

Re: MasterSlave config ActiveMQ

2016-04-11 Thread Tim Bain
Here's what I suspect is happening. Broker 1 delivers the message, and you process it but don't acknowledge it. Broker 1 goes down, Broker 2 becomes master, and you reconnect to Broker 2. Broker 2 sees that the message is in the queue (and has no way to know that it's been delivered but never

Re: ActiveMQ with KahaDB as persistent store becomes very slow (almost unresponsive) after creating large no (25000+) of Topics

2016-04-11 Thread Shobhana
I looked at only the thread dumps. I will profile with some profiler first and see where is the broker spending more time. -- View this message in context:

Re: apr_pools.h error while compiling from the Activemq source?

2016-04-11 Thread Timothy Bish
On 04/11/2016 03:11 AM, waqas wrote: I am trying to compile the activemq from source code downloaded from here and trying to build it with visual studio 2010. I am getting this problem some

RE: Monitoring ActiveMQ

2016-04-11 Thread barry.barnett
RHQ is a good tool! Regards, Barry Barnett Enterprise Queuing Services | QS4U Cell: 803-207-7452 -Original Message- From: Vishwakarma, Chhaya [chhaya.vishwaka...@thinkbiganalytics.com] Sent: Monday, April 11, 2016 07:10 AM Central

Monitoring ActiveMQ

2016-04-11 Thread Vishwakarma, Chhaya
Hi All, I have ingestion pipeline source --> ActiveMQ --> Storm --> HDFS. Now I want to monitor ActiveMQ queue so as to detect failures and send email to concerned person. I haven't used it before so I'm looking at options that can be used for monitoring these queues. Can somebody suggest

apr_pools.h error while compiling from the Activemq source?

2016-04-11 Thread waqas
I am trying to compile the activemq from source code downloaded from here and trying to build it with visual studio 2010. I am getting this problem some chunk of it is given below full error

Re: How to compile a .cpp file with activemq libraries?

2016-04-11 Thread waqas
Can you please explain how did you solved the apr_pools.h problem ? -- View this message in context: http://activemq.2283324.n4.nabble.com/How-to-compile-a-cpp-file-with-activemq-libraries-tp4697080p4710571.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.