Re: SQL Server Error - Cannot load JDBC driver class

2017-10-19 Thread ubaid
I have solved the issue over here, you can find the solution over here . The reason the messages are not storing in the database is that

HTTP Access log

2017-10-19 Thread davidh
We are using ActiveMQ REST API to publish messages on topics. I'd like to be able to track HTTP requests into ActiveMQ, via Jetty, such that I can see timestamp, time taken etc. Is this possible? I know that AMQ uses Jetty embedded - and ( based on this

Re: Kahadb index updates taking too much time on ActiveMQ 5.11

2017-10-19 Thread Devlin
Thank you, Tim. We finally figured out the issue; NFS "noac" option was killing performance. (vers=4.0,rsize=65536,wsize=65536,namlen=255,hard,noac,proto=tcp,port=0,timeo=20,retrans=2) We joked about it afterwards, no "air conditioning" after a long summer can kill anything :-) Thanks again for

Re: Kahadb index updates taking too much time on ActiveMQ 5.11

2017-10-19 Thread Tim Bain
I'm glad you got it working, and from the synonyms I'm not surprised that NFS ended up being the root cause. Tim On Oct 19, 2017 6:24 AM, "Devlin" wrote: > Thank you, Tim. > > We finally figured out the issue; NFS "noac" option was killing > performance. > > (vers=4.0,rsize=65536,wsize=65536,na

Re: Cleanup Pending messages using JMX remove message

2017-10-19 Thread Tim Bain
Just to confirm: when your subscribers are all offline, how many objects are returned in the List from getSubscriptions()? Tim On Wed, Oct 18, 2017 at 10:18 AM, Hitesh < hitesh.hotchand...@contentsphere.com> wrote: > > > Hi all, > I have a very peculiar and weird usecase with ActiveMQ 5.13 > > I

Re: ActiveMQ broker OOM

2017-10-19 Thread Tim Bain
1) All the overhead data structures of the broker, including the running threads. 2) The memory store, which is used for both non-persistent messages and for paging persistent messages back in from the persistent store. The paging is done per-queue if I remember correctly, so if you have lots of pe

ActiveMQMessageConsumer dispatch

2017-10-19 Thread Juleian
Hello, I used ActiveMQ to send JSON Strings form a publisher to a subscriber via Topic "iCASA". Eventhough the message is published and also received by the subscriber, theres an error message showing up I do not undertsand. I tired to google the problem but without any concrete hints. This error

Re: [Artemis 2.1-2.3] Configuration Reload on slave broker.xml causes slave to start/enable acceptors which disables backups

2017-10-19 Thread Justin Bertram
Any progress here? Justin On Thu, Sep 21, 2017 at 3:51 PM, Dan Langford wrote: > a quick note and then i will work on providing a more reproducible use set > of artifacts. > > > How did you test that? > > Three things i notice. 1) in the JMX console (viewed via Hawtio/jolokia > api in 2.1, an

Re: ActiveMQMessageConsumer dispatch

2017-10-19 Thread Tim Bain
> > java.lang.RuntimeException: Failed to invoke > public org.apache.activemq.command.ActiveMQDestination() with no args > java.lang.RuntimeException: Failed to invoke public > org.apache.activemq.command.ActiveMQDestination() with no args > This error message means that Gson is trying to deserial

Re: Temp Store is Full - False Positive?

2017-10-19 Thread Tim Bain
I finally got some time to look into this, and several parts of what I told you were wrong. I had said that the temp store was a KahaDB instance. That was true, but imprecise and I didn't know it. Technically, the temp store is any store that implements org.apache.activemq.store.PListStore, and if

Re: ActiveMQ DLQ issues

2017-10-19 Thread Tim Bain
This tells you that the messages were discarded by ActiveMQ because they had expired. Are your producers setting a time to live when sending messages? Tim On Fri, Sep 15, 2017 at 5:42 PM, mtod wrote: > I'm running ActiveMQ 5.10.0 with an embedded camel route. It's been running > fine until we c