Re: Message processed in wrong order

2016-02-25 Thread artnaseef
How many producers are being used by the application? To determine the answer to that question, you need to look at the connection settings used by the "activemq" component and related beans. It is also possible to check the same by looking at Message IDs as each message ID contains the ID of the

Re: No performance improvement using PooledConnectionFactory (AMQ 5.12.1).

2016-02-25 Thread artnaseef
I agree with Robbie's comments here. The statement that the application only creates the connections once got me confused at first, but looking at the original post, the pseudo-code there clearly creates the connection once on each producer. To verify, start up the application and use one of the

Re: question for users of NFS master/slave setups

2016-02-25 Thread artnaseef
I've used it successfully more than once without any specific tuning to NFS. With that said, systems groups maintained the filesystem, so I may simply be unaware of the same. Note that you'll need NFSv4 for full H/A; NFSv3 clients hold locks indefinitely when they drop off the server's network (i

Re: why MSG size in activemq is much larger than payload

2016-02-25 Thread artnaseef
Chistopher is correct here. Is there any reason why this larger value is a concern? -- View this message in context: http://activemq.2283324.n4.nabble.com/why-MSG-size-in-activemq-is-much-larger-than-payload-tp4708070p4708430.html Sent from the ActiveMQ - User mailing list archive at Nabble.co

Re: Daily Message Count - HELP

2016-02-25 Thread artnaseef
So there's no easy button to get those stats - it will take some work. However, looking at the stated concern of filling store space. You have a slow consumer problem - somewhere. Note that with store space, it's entirely possible that only a small number of messages are causing the entire probl

Re: Help with a Failover testing that shows missing messages

2016-02-25 Thread artnaseef
By the way, where in the processing is the check for missed messages? -- View this message in context: http://activemq.2283324.n4.nabble.com/Help-with-a-Failover-testing-that-shows-missing-messages-tp4707916p4708425.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: Help with a Failover testing that shows missing messages

2016-02-25 Thread artnaseef
Are there any messages in the application logs? Messages from camel indicating failures on messages (aka exchanges)? Messages from ActiveMQ (or camel's JMS component) indicating lost connection and need to reconnect? Connection pooling and consumer caching may be coming into play. Although if t

Re: Help with a Failover testing that shows missing messages

2016-02-25 Thread mtod
Great suggestions I'll increase some of my logging to see if I can narrow it down a bit. I'm not logging the reboots so I'll add a log for that. Also check the DLQ and the invalid.schema Add a general exception trap. Thanks I'll do some more testing and report back. Mike -- View this messa

Re: Help with a Failover testing that shows missing messages

2016-02-25 Thread Tim Bain
In your route you're only catching org.apache.camel.ValidationException; what would happen if some other exception was thrown? Also, I assume you've already checked the DLQ and your invalid.schema queue and the missing messages aren't in either place? Can you correlate the times the messages are

Re: Help with a Failover testing that shows missing messages

2016-02-25 Thread mtod
Thanks for the reply. So I'm still seeing this issue even after turning on Camel transacted=true. http://camel.apache.org/schema/spring"; xmlns:km="http:///messaging/esb"/>

Re: Rfresh org.apache.activemq.broker.SslContext from disk/jks content

2016-02-25 Thread Tim Bain
You may get a better response about whether anyone plans to work on this from the dev mailing list. But there's a good chance that no one has plans to implement the feature, but if you felt like implementing it yourself and contributing the code we'd gladly take the contribution (and from that poi

Re: Daily Message Count - HELP

2016-02-25 Thread Quinn Stevenson
You shouldn’t need to write any java - you can use the Spring DSL, and the route can run inside the ActiveMQ broker. I don’t think you’ll have the camel-splunk component in that old of an ActiveMQ version, so that limits your options a bit. You could have the route log the contents of the stat

Re: Rfresh org.apache.activemq.broker.SslContext from disk/jks content

2016-02-25 Thread hermans
Hi all, I am focused on this issue. Do you have any plans to release the improvement? ( AMQ-5867 ) Thanks Hermano -- View this message in context: http://activemq.2283324.n4.nabble.com/Rfresh-org-apache-activemq-broker-SslContext-from-disk-jk

Re: Node.js STOMP client recommendation

2016-02-25 Thread xabhi
Hi, I am looking at these two libraries - https://www.npmjs.com/package/stompit and https://www.npmjs.com/package/stompjs . Has anyone used them before? Which one is recommended by ActiveMQ community? -- Vi