Return-Path: Delivered-To: apmail-hadoop-core-dev-archive@www.apache.org Received: (qmail 32921 invoked from network); 24 Jan 2008 01:06:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 24 Jan 2008 01:06:57 -0000 Received: (qmail 12727 invoked by uid 500); 24 Jan 2008 01:06:47 -0000 Delivered-To: apmail-hadoop-core-dev-archive@hadoop.apache.org Received: (qmail 12703 invoked by uid 500); 24 Jan 2008 01:06:47 -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 12694 invoked by uid 500); 24 Jan 2008 01:06:47 -0000 Delivered-To: apmail-lucene-hadoop-dev@lucene.apache.org Received: (qmail 12689 invoked by uid 99); 24 Jan 2008 01:06:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Jan 2008 17:06:47 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Jan 2008 01:06:28 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 05EFD71422C for ; Wed, 23 Jan 2008 17:06:35 -0800 (PST) Message-ID: <18016241.1201136795020.JavaMail.jira@brutus> Date: Wed, 23 Jan 2008 17:06:35 -0800 (PST) From: "Nigel Daley (JIRA)" To: hadoop-dev@lucene.apache.org Subject: [jira] Updated: (HADOOP-2232) Add option to disable nagles algorithm in the IPC Server In-Reply-To: <25291272.1195512643826.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-2232?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Nigel Daley updated HADOOP-2232: -------------------------------- Fix Version/s: 0.16.0 This should have been assigned to 0.16. It was PA before the feature freeze. > Add option to disable nagles algorithm in the IPC Server > -------------------------------------------------------- > > Key: HADOOP-2232 > URL: https://issues.apache.org/jira/browse/HADOOP-2232 > Project: Hadoop Core > Issue Type: Improvement > Components: ipc > Affects Versions: 0.16.0 > Reporter: Clint Morgan > Assignee: Clint Morgan > Fix For: 0.16.0 > > Attachments: 2232-3.patch, HADOOP-2232-1.patch, HADOOP-2232-2.patch > > > While investigating hbase performance, I found a bottleneck caused by > Nagles algorithm. For some reads I would get a bi-modal distribution > of read times, with about half the times being around 20ms, and half > around 200ms. I tracked this down to the well-known interaction between > Nagle's algorithm and TCP delayed acknowledgments. > I found that calling setTcpNoDelay(true) on the server's socket > connection dropped all of my read times back to a constant 20 ms. > I propose a patch to have this TCP_NODELAY option be configurable. The > attacked patch allows one to set the TCP_NODELAY option on both the > client and the server side. Currently this is defaulted to false > (i.e., with Nagle's enabled). > To see the effect, I have included a Test which provokes the issue by > sending a MapWriteable over an IPC call. On my machine this test shows > a speedup of 117 times when using TCP_NODELAY. > These tests were done on OSX 10.4. Your milage may very with other > TCP/IP implementation stacks. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.