Re: Artemis: Memory leak while shutting down the tomcat server with embedded JMS server

2017-03-05 Thread nigro_franz
Hi!! Agreed with Justin about not being a real issue.. Check the last comment here: https://github.com/netty/netty/issues/2522 You could try to put a FastThreadLocal.destroy() on the application exit. Anyway, there are good chances that the memory leak protection (https://wiki.apache.org/tomcat/Me

Re: Artemis: Memory leak while shutting down the tomcat server with embedded JMS server

2017-03-05 Thread vishal3007
Thanks for the reply...If there is no memory leak in case of Tomcat shutdown/restart then I am ok with it...BTW can you please point out the sample code\documentation to disable the global thread pools? Note: I am using broker.xml to setup the server and looked at the https://activemq.apache.org/

Re: org.apache.activemq.broker.TransportConnection.Transport - Transport Connection to: tcp://XX.XX.XXX.XXX:5445 failed: java.io.EOFException

2017-03-05 Thread Daivish.shah
Yes this Sever is configured to F5 load balancer too, does that mean I need to ignore the message something like this ?! Do I need to make any changes in my configurations here ?! Please advice me thanks for your help on this. > On Mar 5, 2017, at 8:55 PM, Ravi Kumar wrote: > > Check if the

Re: org.apache.activemq.broker.TransportConnection.Transport - Transport Connection to: tcp://XX.XX.XXX.XXX:5445 failed: java.io.EOFException

2017-03-05 Thread Ravi Kumar
Check if the IP 10.33.168.186 belongs to any load balancer. If so then if healthcheck is enabled at load balancer level then you will get such messages. On Sat, Mar 4, 2017 at 4:30 AM, Daivish Shah wrote: > We have following Configuration in Activemq.XML > > > > >

Re: Artemis: Memory leak while shutting down the tomcat server with embedded JMS server

2017-03-05 Thread Justin Bertram
The thread-pool from which the "ActiveMQ-client-global-threads-1227208364" thread comes is a static pool created for the instances of org.apache.activemq.artemis.api.core.client.ServerLocator in the JVM. This pool is designed to hang around until the JVM is shutdown. If you don't want this be

Re: Artemis: Memory leak while shutting down the tomcat server with embedded JMS server

2017-03-05 Thread Justin Bertram
There is an example called "spring-integration" shipped with Artemis that demonstrates how to boostrap an instance via Spring. Of course, it doesn't use Tomcat. Justin - Original Message - From: "Clebert Suconic" To: users@activemq.apache.org Sent: Sunday, March 5, 2017 3:16:50 PM Su

Re: Artemis: Memory leak while shutting down the tomcat server with embedded JMS server

2017-03-05 Thread Clebert Suconic
On Sun, Mar 5, 2017 at 7:08 AM, vishal3007 wrote: > I am using Artemis server as an embedded server in my webapp. > The Embedded server is started as spring-bean as explained in the Spring > Integration examples provided by Artemis. What integration example provided by Artemis? I don't recall any

Artemis: Memory leak while shutting down the tomcat server with embedded JMS server

2017-03-05 Thread vishal3007
I am using Artemis server as an embedded server in my webapp. The Embedded server is started as spring-bean as explained in the Spring Integration examples provided by Artemis. When tomcat server is shut down following warning comes in console: Mar 05, 2017 5:41:09 PM org.apache.catalina.core.Stan