Return-Path: Delivered-To: apmail-hadoop-common-dev-archive@www.apache.org Received: (qmail 22560 invoked from network); 11 Jun 2010 03:58:35 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 11 Jun 2010 03:58:35 -0000 Received: (qmail 14127 invoked by uid 500); 11 Jun 2010 03:58:33 -0000 Delivered-To: apmail-hadoop-common-dev-archive@hadoop.apache.org Received: (qmail 14075 invoked by uid 500); 11 Jun 2010 03:58:31 -0000 Mailing-List: contact common-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: common-dev@hadoop.apache.org Delivered-To: mailing list common-dev@hadoop.apache.org Received: (qmail 14065 invoked by uid 99); 11 Jun 2010 03:58:30 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Jun 2010 03:58:30 +0000 X-ASF-Spam-Status: No, hits=0.7 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (nike.apache.org: local policy) Received: from [69.147.107.21] (HELO mrout2-b.corp.re1.yahoo.com) (69.147.107.21) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Jun 2010 03:58:23 +0000 Received: from [10.66.74.221] (spacestar-lr.eglbp.corp.yahoo.com [10.66.74.221]) by mrout2-b.corp.re1.yahoo.com (8.13.8/8.13.8/y.out) with ESMTP id o5B3tu5G077788; Thu, 10 Jun 2010 20:55:57 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; s=serpent; d=yahoo-inc.com; c=nofws; q=dns; h=message-id:date:from:user-agent:mime-version:to:cc:subject: references:in-reply-to:content-type:content-transfer-encoding; b=Oon4VM38dT3GgdqJo6S+OH1a5XdHtPy0g2aX0H1/Eh6Lhq6Da2/Afq+m5DDpenyR Message-ID: <4C11B3CB.1080303@yahoo-inc.com> Date: Fri, 11 Jun 2010 09:25:55 +0530 From: Vinod KV User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.9) Gecko/20100423 Lightning/1.0b1 Thunderbird/3.0.4 MIME-Version: 1.0 To: "common-dev@hadoop.apache.org" CC: Saurabh Agarwal Subject: Re: job conf object References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org On Wednesday 26 May 2010 04:38 PM, Saurabh Agarwal wrote: > Hii.. > I am toying around with hadoop configuration. > I am trying to replace HDFS with a common nfsmount, I only have map tasks. > so intermediate outputs need not be communicated!!! > So I want is there a way to make the temp directory local to the nodes and > place job conf object and jar in a nfs mount so all the nodes can access > it.. > Saurabh Agarwal > Ideally you can do it, because MapReduce uses FileSystem APIs everywhere, but you may find some quirks. OTOH, it is a very very bad idea and highly discouraged to run MapReduce on NFS - as soon as the number of nodes and thus tasks scales up, NFS will become bottlenecked and tasks/jobs will start failing with hard to debug failures. +Vinod