[ 
https://issues.apache.org/jira/browse/ARTEMIS-874?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15998774#comment-15998774
 ] 

ASF subversion and git services commented on ARTEMIS-874:
---------------------------------------------------------

Commit e4c4539c8fefefec23d174441144e1c2a05cf7ca in activemq-artemis's branch 
refs/heads/1.x from [~d0k1]
[ https://git-wip-us.apache.org/repos/asf?p=activemq-artemis.git;h=e4c4539 ]

ARTEMIS-874: ThreadGroup memory leak


> ThreadGroup memory leak
> -----------------------
>
>                 Key: ARTEMIS-874
>                 URL: https://issues.apache.org/jira/browse/ARTEMIS-874
>             Project: ActiveMQ Artemis
>          Issue Type: Bug
>    Affects Versions: 1.5.0
>            Reporter: Damien Hollis
>
> Each ActiveMQConnection has a failoverListenerExecutor, which is initialized 
> using the code 
> {code:java}
> Executors.newFixedThreadPool(1, ActiveMQThreadFactory.defaultThreadFactory());
> {code}
> Which creates a new ActiveMQThreadFactory and the factory has a ThreadGroup.  
> When ThreadGroups are created, they are added to an array on their parent 
> ThreadGroup.  In our testing, the array of ThreadGroups just keeps growing as 
> we keep creating ActiveMQConnections.  The problem seems to be that nobody is 
> destroying the ThreadGroups (ThreadGroup.destroy()).  Note: the 
> ActiveMQConnection etc are all cleaned up correctly.  
> I've managed to workaround this issue by caching the ActiveMQConnection but 
> in some environments this might not be possible.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to