Return-Path: X-Original-To: apmail-activemq-dev-archive@www.apache.org Delivered-To: apmail-activemq-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E7A8793C6 for ; Thu, 13 Oct 2011 07:45:39 +0000 (UTC) Received: (qmail 8702 invoked by uid 500); 13 Oct 2011 07:45:39 -0000 Delivered-To: apmail-activemq-dev-archive@activemq.apache.org Received: (qmail 8607 invoked by uid 500); 13 Oct 2011 07:45:37 -0000 Mailing-List: contact dev-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list dev@activemq.apache.org Received: (qmail 8594 invoked by uid 99); 13 Oct 2011 07:45:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Oct 2011 07:45:33 +0000 X-ASF-Spam-Status: No, hits=-2000.5 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 13 Oct 2011 07:45:32 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id D4768306604 for ; Thu, 13 Oct 2011 07:45:11 +0000 (UTC) Date: Thu, 13 Oct 2011 07:45:11 +0000 (UTC) From: "mikab PENG (Commented) (JIRA)" To: dev@activemq.apache.org Message-ID: <1343657331.8268.1318491911871.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <1701001251.34173.1313177427899.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Commented] (AMQ-3448) Zombie ActiveMQ Connection Dispatcher threads - seems to consume all process File Descriptors (FD leak) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/AMQ-3448?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13126412#comment-13126412 ] mikab PENG commented on AMQ-3448: --------------------------------- sorry, the below code is test code : public static void main(String[] argv) throws Exception { for (int i = 0; i < 1000; i++) { String url = "tcp://localhost:61616?wireFormat.maxInactivityDuration=0"; ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory(url); ActiveMQConnection connection = (ActiveMQConnection) factory.createConnection(); System.err.println(connection); connection.start(); } System.exit(0); } I tried the last version(5.5.0) and didn't reproduce this error. when I run these code on 4.1.1, each connection will create a zombie thread. > Zombie ActiveMQ Connection Dispatcher threads - seems to consume all process File Descriptors (FD leak) > ------------------------------------------------------------------------------------------------------- > > Key: AMQ-3448 > URL: https://issues.apache.org/jira/browse/AMQ-3448 > Project: ActiveMQ > Issue Type: Bug > Affects Versions: 5.3.2 > Environment: Active MQ 5.3.2 > java version "1.6.0_23" > Java(TM) SE Runtime Environment (build 1.6.0_23-b05) > Java HotSpot(TM) Server VM (build 19.0-b09, mixed mode) > LSB Version: :core-3.1-amd64:core-3.1-ia32:core-3.1-noarch:graphics-3.1-amd64:graphics-3.1-ia32:graphics-3.1-noarch > Distributor ID: CentOS > Description: CentOS release 5.5 (Final) > Release: 5.5 > Codename: Final > Reporter: Carl Allain > Priority: Critical > > Somehow linked to https://issues.apache.org/jira/browse/AMQ-3286 which was closed. I am opening here as I cannot reopen the old bug and I hope that with the information I provide here, someone will be able to have some insight of the possible cause and a fix. > I don't know how to reproduce with a test case, but I have found 800+ of such "ActiveMQ Connection Dispatcher" threads. I also noted that the number of FDs for the process keeps increasing and after a few days, we have a "too many files opened" when going beyond the 1024 limit. Most of those FDs (hundreds) do look like: > java 6700 lexo-ext 904u sock 0,5 1741176200 can't identify protocol > There is not much activity on the system and that is still enough to get the problem. > When we reach the limit of FDs, we get tons of stack traces in the logs, filling up the hard disk... -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira