Return-Path: Delivered-To: apmail-hadoop-hdfs-dev-archive@minotaur.apache.org Received: (qmail 8679 invoked from network); 27 Aug 2009 07:41:23 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 27 Aug 2009 07:41:23 -0000 Received: (qmail 23508 invoked by uid 500); 27 Aug 2009 07:41:23 -0000 Delivered-To: apmail-hadoop-hdfs-dev-archive@hadoop.apache.org Received: (qmail 23433 invoked by uid 500); 27 Aug 2009 07:41:23 -0000 Mailing-List: contact hdfs-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hdfs-dev@hadoop.apache.org Delivered-To: mailing list hdfs-dev@hadoop.apache.org Received: (qmail 23423 invoked by uid 99); 27 Aug 2009 07:41:23 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Aug 2009 07:41:23 +0000 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; Thu, 27 Aug 2009 07:41:20 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 53BCD234C045 for ; Thu, 27 Aug 2009 00:40:59 -0700 (PDT) Message-ID: <1780049369.1251358859320.JavaMail.jira@brutus> Date: Thu, 27 Aug 2009 00:40:59 -0700 (PDT) From: "dhruba borthakur (JIRA)" To: hdfs-dev@hadoop.apache.org Subject: [jira] Created: (HDFS-575) DFSClient read performance can be improved by stagerring connection setup to datanode(s) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org DFSClient read performance can be improved by stagerring connection setup to datanode(s) ---------------------------------------------------------------------------------------- Key: HDFS-575 URL: https://issues.apache.org/jira/browse/HDFS-575 Project: Hadoop HDFS Issue Type: Improvement Components: hdfs client Reporter: dhruba borthakur The DFS client opens a socket connection to a DN for the n-th block, fetches n-th block from that datanode and then opens socket connections to the datanode that contains the n+1th block. Sequential-reads might show performance improvements if the setting up of socket connections to the datanode containing the n+1th block can happen in parallel while the data for the nth block is being fetched. The amount of improvement, if any, has to be measured. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.