Return-Path: Delivered-To: apmail-hadoop-mapreduce-user-archive@minotaur.apache.org Received: (qmail 95175 invoked from network); 15 Aug 2010 19:56:32 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 15 Aug 2010 19:56:32 -0000 Received: (qmail 22520 invoked by uid 500); 15 Aug 2010 19:56:31 -0000 Delivered-To: apmail-hadoop-mapreduce-user-archive@hadoop.apache.org Received: (qmail 22465 invoked by uid 500); 15 Aug 2010 19:56:31 -0000 Mailing-List: contact mapreduce-user-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: mapreduce-user@hadoop.apache.org Delivered-To: mailing list mapreduce-user@hadoop.apache.org Received: (qmail 22457 invoked by uid 99); 15 Aug 2010 19:56:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 15 Aug 2010 19:56:31 +0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of vangjake@googlemail.com designates 209.85.212.48 as permitted sender) Received: from [209.85.212.48] (HELO mail-vw0-f48.google.com) (209.85.212.48) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 15 Aug 2010 19:56:23 +0000 Received: by vws4 with SMTP id 4so3756749vws.35 for ; Sun, 15 Aug 2010 12:56:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:content-type :content-transfer-encoding; bh=6O9fA8vdUZstrV/diqzOmxJpfudvJTvVephgYPWoKPM=; b=qurfuBvmJvp0BwSQrhudXdUamU8ZginvupiJ996/Qe/A7fHfVmzVA8pCTN+FeMmRFE 2TOme9hXq8yCA7qOLT6IoTnXYg6egHu/wLyFRB2OZQkcNtYQnxG/bPk+WgZY0igD8RYE HPw6oWg0fsYQwyxipcCFZsg5Z4ifPnEnvDkZg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; b=XMb7RWUjrMcIJDWayPRCQ6Xktajh0MQaTo5VoxnWkID106mWW4rTb91G35di4PsBSm aNQlbPh2LTnsYv69RIxqEuOgMk6FB+RpkA2uKGsLX1aWTWixEeab1OXlPkkq14Qf+dwU tTY5cap4WFy59XGAbvYq/C5Ru2KcfYcAJbp0g= Received: by 10.220.61.9 with SMTP id r9mr2555270vch.263.1281902162544; Sun, 15 Aug 2010 12:56:02 -0700 (PDT) Received: from [192.168.0.112] (pool-173-73-91-128.washdc.fios.verizon.net [173.73.91.128]) by mx.google.com with ESMTPS id m4sm3056772vbp.16.2010.08.15.12.56.01 (version=SSLv3 cipher=RC4-MD5); Sun, 15 Aug 2010 12:56:01 -0700 (PDT) Message-ID: <4C68464F.5030300@gmail.com> Date: Sun, 15 Aug 2010 15:55:59 -0400 From: Jake Vang User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.8) Gecko/20100802 Lightning/1.0b2 Thunderbird/3.1.2 MIME-Version: 1.0 To: mapreduce-user@hadoop.apache.org Subject: how to submit jobs to a multi-node cluster (linux) from cygwin (windows) Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org i seem to be having problems submitting jobs from hadoop using cygwin in windows (windows 7) to a hadoop multi-node cluster (ubuntu). in windows/cygwin, i have created a user called hadoop. this user, hadoop, is also the user that is created on the master/slave nodes as well. furthermore, i have set dfs.permissions to false. i have an xml file called, hadoop-cluster.xml with the following name-value pairs. * fs.default.name=hdfs://hadoop-0:54310 * mapred.job.tracker=hadoop-0:54311 when i run hadoop (using cygwin) i try a command like this: bin/hadoop my-lib.jar /user/hadoop/input-dir /user/hadoop/output-dir -conf conf/hadoop-cluster.xml but it always fails. the command never passes in the input and output arguments to the program and it exits. why is this? when i upload this jar file to a data node (more precisely, the master node, name node), and run this command then it works (of course, then i don't need to pass in the -conf param). any help is appreciated.