Return-Path: X-Original-To: apmail-hadoop-hdfs-issues-archive@minotaur.apache.org Delivered-To: apmail-hadoop-hdfs-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6E8D69627 for ; Mon, 28 Nov 2011 23:20:01 +0000 (UTC) Received: (qmail 79305 invoked by uid 500); 28 Nov 2011 23:20:01 -0000 Delivered-To: apmail-hadoop-hdfs-issues-archive@hadoop.apache.org Received: (qmail 79275 invoked by uid 500); 28 Nov 2011 23:20:01 -0000 Mailing-List: contact hdfs-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hdfs-issues@hadoop.apache.org Delivered-To: mailing list hdfs-issues@hadoop.apache.org Received: (qmail 79266 invoked by uid 99); 28 Nov 2011 23:20:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Nov 2011 23:20: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; Mon, 28 Nov 2011 23:20: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 4585EA405E for ; Mon, 28 Nov 2011 23:19:40 +0000 (UTC) Date: Mon, 28 Nov 2011 23:19:40 +0000 (UTC) From: "Tsz Wo (Nicholas), SZE (Resolved) (JIRA)" To: hdfs-issues@hadoop.apache.org Message-ID: <250512629.20138.1322522380286.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Resolved] (HDFS-1389) HftpFileSystem should not start a RenewerThread in the static initializer 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/HDFS-1389?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tsz Wo (Nicholas), SZE resolved HDFS-1389. ------------------------------------------ Resolution: Duplicate Let's fix this in HDFS-2589. > HftpFileSystem should not start a RenewerThread in the static initializer > ------------------------------------------------------------------------- > > Key: HDFS-1389 > URL: https://issues.apache.org/jira/browse/HDFS-1389 > Project: Hadoop HDFS > Issue Type: Bug > Reporter: Tsz Wo (Nicholas), SZE > > {code} > //HftpFileSystem > private static RenewerThread renewer = new RenewerThread(); > static { > renewer.start(); > } > {code} > HftpFileSystem creates and starts a RenewerThread in the static initializer. Starting a thread is expensive and the RenewerThread is not required in some cases. One typical example is calling HftpFileSystem.makeQualified(Path path). -- 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