Return-Path: Delivered-To: apmail-hadoop-common-user-archive@www.apache.org Received: (qmail 65484 invoked from network); 2 Mar 2011 06:11:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 2 Mar 2011 06:11:24 -0000 Received: (qmail 80171 invoked by uid 500); 2 Mar 2011 06:11:21 -0000 Delivered-To: apmail-hadoop-common-user-archive@hadoop.apache.org Received: (qmail 79764 invoked by uid 500); 2 Mar 2011 06:11:18 -0000 Mailing-List: contact common-user-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: common-user@hadoop.apache.org Delivered-To: mailing list common-user@hadoop.apache.org Received: (qmail 79754 invoked by uid 99); 2 Mar 2011 06:11:17 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Mar 2011 06:11:17 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of bryanck@gmail.com designates 209.85.218.48 as permitted sender) Received: from [209.85.218.48] (HELO mail-yi0-f48.google.com) (209.85.218.48) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Mar 2011 06:11:08 +0000 Received: by yia25 with SMTP id 25so3152751yia.35 for ; Tue, 01 Mar 2011 22:10:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:content-type:mime-version:subject:from :in-reply-to:date:content-transfer-encoding:message-id:references:to :x-mailer; bh=iYWzpldUjDIfF20K9Mw+at3V0EfBGWu3Vs4FwOtIcnU=; b=EHpdsg+AdgGx+rUZSj9uBD8DvWuVkF8HKp56BscM5+C9QfG2Qx5Iu5bL+ePnzgvRvz fd1m5of3wSYksJYcw7BsdXUu6W0l9/Yx3KUcL/D34a4BZosdplDo3+XNtt2iztOY+Ohh Iq8CDtbDmpIMH58PJv20iLw6RWAXYg3pFOfTo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=content-type:mime-version:subject:from:in-reply-to:date :content-transfer-encoding:message-id:references:to:x-mailer; b=Un3nx4NqiZY8UFLrJXtkMexaSVj4jbUnZ9kz5M/8KubHMUOZEA0xI/L1WLtvWTG1nz oloz12igTmhPfj4e1GOT+AH03HcXp/bwGdSehFPCQKsF+GxoiJ3jFH0f2D1Trn43IU/8 uT1Z0uKEEMQcFh+Q5Cz2362Mi42QOQ99K5nwk= Received: by 10.101.22.3 with SMTP id z3mr3277028ani.195.1299046247607; Tue, 01 Mar 2011 22:10:47 -0800 (PST) Received: from [172.16.194.100] (c-67-180-232-12.hsd1.ca.comcast.net [67.180.232.12]) by mx.google.com with ESMTPS id b28sm2865938ana.20.2011.03.01.22.10.46 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 01 Mar 2011 22:10:46 -0800 (PST) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Apple Message framework v1082) Subject: Re: Hadoop client jar dependencies From: Bryan Keller In-Reply-To: <410D2F8F-026F-4707-8D2D-8E5A51609CC2@gmail.com> Date: Tue, 1 Mar 2011 22:10:44 -0800 Content-Transfer-Encoding: quoted-printable Message-Id: <8A8EAEE4-75E2-49AC-B4B5-942EA7419729@gmail.com> References: <410D2F8F-026F-4707-8D2D-8E5A51609CC2@gmail.com> To: common-user@hadoop.apache.org X-Mailer: Apple Mail (2.1082) X-Virus-Checked: Checked by ClamAV on apache.org I took a look at the ivy.xml file and it seems for a Hadoop client, = you'll need hadoop-core, commons-http-client, commons-codec, and = commons-cli. I also found that you will need jackson (used by = JobClient), but this is not specified as a client dependency in the = ivy.xml. On Mar 1, 2011, at 2:33 AM, Bryan Keller wrote: > I am writing an application that submits job jar files to the job = tracker. The application writes some files to HDFS among other things = before triggering the job. I am using the hadoop-core library in the = Maven central repository. Unfortunately this library has several = dependencies that I don't believe I need for a client application, such = as Jasper, Jetty, and such. Is there a list of the jar files needed for = developing Hadoop client applications? Or alternatively, a list of jar = files only needed when running the Hadoop server processes?