Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 73A48972D for ; Thu, 8 Dec 2011 15:30:01 +0000 (UTC) Received: (qmail 4002 invoked by uid 500); 8 Dec 2011 15:30:01 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 3973 invoked by uid 500); 8 Dec 2011 15:30:01 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 3964 invoked by uid 99); 8 Dec 2011 15:30:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Dec 2011 15:30:01 +0000 X-ASF-Spam-Status: No, hits=-2001.2 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, 08 Dec 2011 15:30:00 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 03B2510728C for ; Thu, 8 Dec 2011 15:29:40 +0000 (UTC) Date: Thu, 8 Dec 2011 15:29:40 +0000 (UTC) From: "nkeywal (Commented) (JIRA)" To: issues@hbase.apache.org Message-ID: <1917685604.53529.1323358180016.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <800499552.45271.1323171820160.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Commented] (HBASE-4965) Monitor the open file descriptors and the threads counters during the unit tests 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/HBASE-4965?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13165247#comment-13165247 ] nkeywal commented on HBASE-4965: -------------------------------- I summarize the main infos: - it seems that hadoop-qa is configured with 1024 file descriptors - we have some leaks - the patch itself could be committed imho. > Monitor the open file descriptors and the threads counters during the unit tests > -------------------------------------------------------------------------------- > > Key: HBASE-4965 > URL: https://issues.apache.org/jira/browse/HBASE-4965 > Project: HBase > Issue Type: Improvement > Components: test > Affects Versions: 0.94.0 > Environment: all > Reporter: nkeywal > Assignee: nkeywal > Priority: Minor > Attachments: 4965_all.patch, ResourceChecker.java, ResourceCheckerJUnitRule.java > > > We're seeing a lot of issues with hadoop-qa related to threads or file descriptors. > Monitoring these counters would ease the analysis. > Note as well that > - if we want to execute the tests in the same jvm (because the test is small or because we want to share the cluster) we can't afford to leak too many resources > - if the tests leak, it's more difficult to detect a leak in the software itself. > I attach piece of code that I used. It requires two lines in a unit test class to: > - before every test, count the threads and the open file descriptor > - after every test, compare with the previous value. > I ran it on some tests; we have for example: > - client.TestMultiParallel#testBatchWithManyColsInOneRowGetAndPut: 232 threads (was 231), 390 file descriptors (was 390). => TestMultiParallel uses 232 threads! > - client.TestMultipleTimestamps#testWithColumnDeletes: 152 threads (was 151), 283 file descriptors (was 282). > - client.TestAdmin#testCheckHBaseAvailableClosesConnection: 477 threads (was 294), 815 file descriptors (was 461) > - client.TestMetaMigrationRemovingHTD#testMetaMigration: 149 threads (was 148), 310 file descriptors (was 307). > It's not always leaks, we can expect some pooling effects. But still... -- 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