Return-Path: Delivered-To: apmail-hadoop-common-issues-archive@minotaur.apache.org Received: (qmail 3458 invoked from network); 24 May 2010 18:44:51 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 24 May 2010 18:44:51 -0000 Received: (qmail 20965 invoked by uid 500); 24 May 2010 18:44:51 -0000 Delivered-To: apmail-hadoop-common-issues-archive@hadoop.apache.org Received: (qmail 20918 invoked by uid 500); 24 May 2010 18:44:51 -0000 Mailing-List: contact common-issues-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: common-issues@hadoop.apache.org Delivered-To: mailing list common-issues@hadoop.apache.org Received: (qmail 20910 invoked by uid 99); 24 May 2010 18:44:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 May 2010 18:44:51 +0000 X-ASF-Spam-Status: No, hits=-1458.9 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 May 2010 18:44:50 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o4OIiUa0011399 for ; Mon, 24 May 2010 18:44:30 GMT Message-ID: <6191144.15851274726670840.JavaMail.jira@thor> Date: Mon, 24 May 2010 14:44:30 -0400 (EDT) From: "Hudson (JIRA)" To: common-issues@hadoop.apache.org Subject: [jira] Commented: (HADOOP-6723) unchecked exceptions thrown in IPC Connection orphan clients In-Reply-To: <33033218.184741272223549956.JavaMail.jira@thor> 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/HADOOP-6723?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12870772#action_12870772 ] Hudson commented on HADOOP-6723: -------------------------------- Integrated in Hadoop-Common-trunk-Commit #264 (See [http://hudson.zones.apache.org/hudson/job/Hadoop-Common-trunk-Commit/264/]) HADOOP-6723. Unchecked exceptions thrown in IPC Connection should not orphan clients. Contributed by Todd Lipcon. > unchecked exceptions thrown in IPC Connection orphan clients > ------------------------------------------------------------ > > Key: HADOOP-6723 > URL: https://issues.apache.org/jira/browse/HADOOP-6723 > Project: Hadoop Common > Issue Type: Bug > Components: ipc > Affects Versions: 0.20.2 > Reporter: Todd Lipcon > Assignee: Todd Lipcon > Priority: Critical > Fix For: 0.21.0 > > Attachments: hadoop-6723.txt > > > If the server sends back some malformed data, for example, receiveResponse() can end up with an incorrect call ID. Then, when it tries to find it in the calls map, it will end up with null and throw NPE in receiveResponse. This isn't caught anywhere, so the original IPC client ends up hanging forever instead of catching an exception. Another example is if the writable implementation itself throws an unchecked exception or OOME. > We should catch Throwable in Connection.run() and shut down the connection if we catch one. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.