Return-Path: Delivered-To: apmail-hadoop-hdfs-issues-archive@minotaur.apache.org Received: (qmail 36995 invoked from network); 26 Oct 2009 21:37:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 26 Oct 2009 21:37:22 -0000 Received: (qmail 9349 invoked by uid 500); 26 Oct 2009 21:37:22 -0000 Delivered-To: apmail-hadoop-hdfs-issues-archive@hadoop.apache.org Received: (qmail 9296 invoked by uid 500); 26 Oct 2009 21:37:22 -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 9286 invoked by uid 99); 26 Oct 2009 21:37:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Oct 2009 21:37:22 +0000 X-ASF-Spam-Status: No, hits=-10.5 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI 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; Mon, 26 Oct 2009 21:37:20 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id EA8C8234C48D for ; Mon, 26 Oct 2009 14:36:59 -0700 (PDT) Message-ID: <935191256.1256593019959.JavaMail.jira@brutus> Date: Mon, 26 Oct 2009 21:36:59 +0000 (UTC) From: "Hairong Kuang (JIRA)" To: hdfs-issues@hadoop.apache.org Subject: [jira] Updated: (HDFS-723) Deadlock in DFSClient#DFSOutputStream In-Reply-To: <837173559.1256158259353.JavaMail.jira@brutus> 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-723?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Hairong Kuang updated HDFS-723: ------------------------------- Attachment: deadlock_0.21.patch Here is the patch for 0.21. > Deadlock in DFSClient#DFSOutputStream > ------------------------------------- > > Key: HDFS-723 > URL: https://issues.apache.org/jira/browse/HDFS-723 > Project: Hadoop HDFS > Issue Type: Bug > Reporter: Hairong Kuang > Assignee: Hairong Kuang > Priority: Blocker > Fix For: 0.21.0 > > Attachments: deadlock.patch, deadlock_0.21.patch > > > WhiIe was running some append-related tests, I hit this deadlock: > {noformat} > Found one Java-level deadlock: > ============================= > "Thread-3": > waiting to lock monitor 0x000000012ee044f0 (object 0x0000000107a0ded0, a org.apache.hadoop.hdfs.DFSClient$DFSOutputStream), > which is held by "main" > "main": > waiting to lock monitor 0x000000012eeb71a8 (object 0x00000001082b0748, a org.apache.hadoop.hdfs.DFSClient$LeaseChecker), > which is held by "Thread-3" > Java stack information for the threads listed above: > =================================================== > "Thread-3": > at org.apache.hadoop.hdfs.DFSClient$DFSOutputStream.close(DFSClient.java:3582) > - waiting to lock <0x0000000107a0ded0> (a org.apache.hadoop.hdfs.DFSClient$DFSOutputStream) > at org.apache.hadoop.hdfs.DFSClient$LeaseChecker.close(DFSClient.java:1175) > - locked <0x00000001082b0748> (a org.apache.hadoop.hdfs.DFSClient$LeaseChecker) > at org.apache.hadoop.hdfs.DFSClient.close(DFSClient.java:306) > - locked <0x000000010824d640> (a org.apache.hadoop.hdfs.DFSClient) > - waiting to lock <0x0000000107a0ded0> (a org.apache.hadoop.hdfs.DFSClient$DFSOutputStream) > at org.apache.hadoop.hdfs.DFSClient$LeaseChecker.close(DFSClient.java:1175) > - locked <0x00000001082b0748> (a org.apache.hadoop.hdfs.DFSClient$LeaseChecker) > at org.apache.hadoop.hdfs.DFSClient.close(DFSClient.java:306) > - locked <0x000000010824d640> (a org.apache.hadoop.hdfs.DFSClient) > at org.apache.hadoop.hdfs.DistributedFileSystem.close(DistributedFileSystem.java:325) > at org.apache.hadoop.fs.FileSystem$Cache.closeAll(FileSystem.java:1835) > - locked <0x0000000107a77ec8> (a org.apache.hadoop.fs.FileSystem$Cache) > at org.apache.hadoop.fs.FileSystem$Cache$ClientFinalizer.run(FileSystem.java:1851) > - locked <0x00000001079daa00> (a org.apache.hadoop.fs.FileSystem$Cache$ClientFinalizer) > "main": > at org.apache.hadoop.hdfs.DFSClient$LeaseChecker.remove(DFSClient.java:1151) > - waiting to lock <0x00000001082b0748> (a org.apache.hadoop.hdfs.DFSClient$LeaseChecker) > at org.apache.hadoop.hdfs.DFSClient$DFSOutputStream.close(DFSClient.java:3609) > - locked <0x0000000107a0ded0> (a org.apache.hadoop.hdfs.DFSClient$DFSOutputStream) > at org.apache.hadoop.fs.FSDataOutputStream$PositionCache.close(FSDataOutputStream.java:61) > at org.apache.hadoop.fs.FSDataOutputStream.close(FSDataOutputStream.java:86) > at org.apache.hadoop.hdfs.TestFileAppend4.testAppend(TestFileAppend4.java:99) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) > at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) > at java.lang.reflect.Method.invoke(Method.java:597) > at junit.framework.TestCase.runTest(TestCase.java:168) > at junit.framework.TestCase.runBare(TestCase.java:134) > at junit.framework.TestResult$1.protect(TestResult.java:110) > at junit.framework.TestResult.runProtected(TestResult.java:128) > at junit.framework.TestResult.run(TestResult.java:113) > at junit.framework.TestCase.run(TestCase.java:124) > at junit.framework.TestSuite.runTest(TestSuite.java:232) > at junit.framework.TestSuite.run(TestSuite.java:227) > at junit.extensions.TestDecorator.basicRun(TestDecorator.java:24) > at junit.extensions.TestSetup$1.protect(TestSetup.java:23) > at junit.framework.TestResult.runProtected(TestResult.java:128) > at junit.extensions.TestSetup.run(TestSetup.java:27) > at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.run(JUnitTestRunner.java:420) > at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.launch(JUnitTestRunner.java:911) > at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.main(JUnitTestRunner.java:768) > {noformat} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.