Re: Replicated LevelDB store issues

2014-09-23 Thread Justin Reock
Remove the ³pax-url-aether-1.5.2.jar² from /lib to resolve this issue. Thanks, Justin Reock OpenLogic Www.openlogic.com On 9/23/14, 12:31 PM, Kevin Burton bur...@spinn3r.com wrote: Š and I seem to recall that I fixed this and had to rm a jar or move it to a specific directory. But I¹ve long

HawtIO ActiveMQ Plugin - ConstraintMapping

2014-10-10 Thread Justin Reock
Hi all, I'm attempting to set up ConstraintMapping in jetty.xml for non-admin users against jolokia/HawtIO. I'm having trouble tracking down the actual URLs that are used to do create/write/delete operations. Where can I find the HawtIO source code for the ActiveMQ plugin? Or, even better,

Commercial Support Page

2015-01-26 Thread Justin Reock
, On-Site Training, and 24x7 Professional and Developer support. Please let me know whom I can contact to improve our representation on that page. I spoke with the Apache webmaster, Mike Drob, and he directed me here to the User List. Thanks, Justin Reock Open Source Solutions Architect supp

Re: Commercial Support Page

2015-01-26 Thread Justin Reock
you're proposing? Cheers, Hadrian On 01/26/2015 10:01 AM, Justin Reock wrote: Hi ActiveMQ community, I'm wondering who I would need to get in touch with to improve the verbiage on ActiveMQ's Commercial Support page (http://activemq.apache.org/support.html) for OpenLogic. Over the last year

Re: Jetty Security Web Console

2015-01-21 Thread Justin Reock
Hi Troy, Please reference the following JIRA: https://issues.apache.org/jira/browse/AMQ-5388 The workaround will show you how to limit access for a set of users. The default configuration, as you noted, grants the same access to Admins and regular users, but you can alter this to lock it down

Apache Shiro for SSL in ActiveMQ

2015-01-21 Thread Justin Reock
Hi all, I was looking through the available filters for Apache Shiro in 5.10, and I didn't see an SSLFilter available. Does this mean that, currently, Apache Shiro cannot be used to manage the SSL transport connector in ActiveMQ? If it can be used and I'm just overlooking something, is there

Re: Commercial Support Page

2015-01-28 Thread Justin Reock
us know if you have any questions. Regards, Hadrian [1] https://cwiki.apache.org/confluence/display/ACTIVEMQ/Support On 01/26/2015 03:01 PM, Justin Reock wrote: Hi Hadrian, Thanks for your help with this! Here¹s the language we¹d like to see: ³Rogue Wave / OpenLogic has a dedicated team

Re: determining the host that consumed/produced a message?

2015-02-13 Thread Justin Reock
Hi Kevin, For setting a custom ID, use the oft-overlooked ActiveMQConnection / Connection setClientID() method. Just be sure to use a unique one per client, ActiveMQ will reject dupes. I haven¹t used Advisories for that before, but, setClientID is really useful for inventory. Thanks, Justin

Re: Storing message off heap, message compression, and storing the whole message as headers.

2015-04-20 Thread Justin Reock
You made a statement that sounds like the JVM can only use half its memory, because the other half has to be kept free for GCing, which doesn't match my experience at all. I've observed G1GC to successfully GC when the heap was nearly 100% full, I'm certain it's not a problem for CMS because CMS

Re: Queue locks up , purging it allows it to work again.

2015-04-19 Thread Justin Reock
Have you tried forcing prefetch to 1 as a destination policy? -Justin On Apr 19, 2015 8:15 PM, Kevin Burton bur...@spinn3r.com wrote: I’m totally stumped on this bug …. Essentially, I have a queue that locks up and consumers in my main daemon no longer consume messages from it. It’s basically

Re: Active MQ Shared File System Master Slave with Elastic File System

2016-09-02 Thread Justin Reock
Be careful of this, in my own load testing the lock state can be lost over EFS leading to a “master-master” scenario under heavy load, which can lead to journal corruption. Check out the lease locking pluggable storage locker, which is a viable workaround for this problem. Thanks, Justin

Re: Active MQ Shared File System Master Slave with Elastic File System

2016-09-08 Thread Justin Reock
Thanks Tim! I recently posted a blog article on this subject, if the user community would like some details about the pluggable storage locker implementation: http://blog.klocwork.com/open-source/pluggable-storage-lockers-for-activemq/ I hope it’s helpful. -Justin On 9/2/16, 11:53 PM,

Re: ActiveMQ broker discards messages for topic durable subscriber if they were sent to topic while client was offline due to unexpecteable lost connection

2019-10-21 Thread Justin Reock
Hi HappyMan, So, architecturally speaking, this is really something that should be handled at the client/application layer using your exception handling and try/catch/finally logic. Your code should never be allowed to crash without releasing the connection, even with a hard kill of the

Re: ActiveMQ broker discards messages for topic durable subscriber if they were sent to topic while client was offline due to unexpecteable lost connection

2019-10-21 Thread Justin Reock
Hi HappyMan, You're welcome! That's good to know -- I figured the InactivityMonitor was enabled, good to know that it was disabled. Enabling it will help I'm sure, you might need to tweak some of the timeout values, etc, but, good luck and keep us posted! -Justin On 10/21/19, 3:30 PM,

Re: ActiveMQ broker discards messages for topic durable subscriber if they were sent to topic while client was offline due to unexpecteable lost connection

2019-10-24 Thread Justin Reock
Nice work, HappyMan -- glad to help! -Justin On 10/22/19, 2:38 AM, "HappyMan" wrote: Hi, Justin. I turned on InactivityMonitor and now everything works great. I set keepAlive interval in MQTT client for 10 seconds and defaultKeepAliveInterval on MQTT transport connectot