Return-Path: Delivered-To: apmail-hadoop-core-dev-archive@www.apache.org Received: (qmail 37674 invoked from network); 28 Mar 2008 19:18:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 28 Mar 2008 19:18:43 -0000 Received: (qmail 97955 invoked by uid 500); 28 Mar 2008 19:18:40 -0000 Delivered-To: apmail-hadoop-core-dev-archive@hadoop.apache.org Received: (qmail 97932 invoked by uid 500); 28 Mar 2008 19:18:40 -0000 Mailing-List: contact core-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: core-dev@hadoop.apache.org Delivered-To: mailing list core-dev@hadoop.apache.org Received: (qmail 97919 invoked by uid 99); 28 Mar 2008 19:18:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 28 Mar 2008 12:18:40 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 28 Mar 2008 19:17:58 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 6B986234C0B5 for ; Fri, 28 Mar 2008 12:16:24 -0700 (PDT) Message-ID: <1470388260.1206731784439.JavaMail.jira@brutus> Date: Fri, 28 Mar 2008 12:16:24 -0700 (PDT) From: "Pete Wyckoff (JIRA)" To: core-dev@hadoop.apache.org Subject: [jira] Commented: (HADOOP-3120) Large #of tasks failing at one time can effectively hang the jobtracker In-Reply-To: <797581927.1206728184582.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HADOOP-3120?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12583155#action_12583155 ] Pete Wyckoff commented on HADOOP-3120: -------------------------------------- I am setting it up on a non-hadoop test server, just to ensure it operates the way I think it should. You are right, if we went from 10 microseconds/call to something more like ~0.5-1 microsecond that should probably do it -- The 10 microseconds is measured from a call to LOG.info with a couple of strings and 2 ints to format (standalone program with idle disk and about a million calls). The 0.5 is the same call with info logging disabled and just guestimating the overhead of the call to AsyncAppender. Probably can have #s on asyncappender performance maybe early next week. -- pete > Large #of tasks failing at one time can effectively hang the jobtracker > ------------------------------------------------------------------------ > > Key: HADOOP-3120 > URL: https://issues.apache.org/jira/browse/HADOOP-3120 > Project: Hadoop Core > Issue Type: Bug > Environment: Linux/Hadoop-15.3 > Reporter: Pete Wyckoff > Priority: Minor > > We think that JobTracker.removeMarkedTaks does so much logging when this happens (ie logging thousands of failed taks per cycle) that nothing else can go on (since it's called from a synchronized method) and thus by the next cycle, the next waves of jobs have failed and we again have 10s of thousands of failures to log and on and on. > At least, the above is what we observed - just a continual printing of those failures and nothing else happening on and on. Of course the original jobs may have ultimately failed but new jobs come in to perpetuate the problem. > This has happened to us a number of times and since we commented out the log.info in that method we haven't had any problems. Although thousands and thousands of task failures are hopefully not that common. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.