Return-Path: Delivered-To: apmail-lucene-hadoop-commits-archive@locus.apache.org Received: (qmail 31877 invoked from network); 19 Nov 2007 22:57:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 19 Nov 2007 22:57:33 -0000 Received: (qmail 59166 invoked by uid 500); 19 Nov 2007 22:57:21 -0000 Delivered-To: apmail-lucene-hadoop-commits-archive@lucene.apache.org Received: (qmail 59042 invoked by uid 500); 19 Nov 2007 22:57:20 -0000 Mailing-List: contact hadoop-commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hadoop-dev@lucene.apache.org Delivered-To: mailing list hadoop-commits@lucene.apache.org Received: (qmail 59028 invoked by uid 99); 19 Nov 2007 22:57:20 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Nov 2007 14:57:20 -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.130] (HELO eos.apache.org) (140.211.11.130) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Nov 2007 22:57:31 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 0E886D2E7 for ; Mon, 19 Nov 2007 22:57:10 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki To: hadoop-commits@lucene.apache.org Date: Mon, 19 Nov 2007 22:57:09 -0000 Message-ID: <20071119225709.20186.29228@eos.apache.org> Subject: [Lucene-hadoop Wiki] Update of "EclipsePlugIn" by ChristopheTaton X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Lucene-hadoop Wiki" for change notification. The following page has been changed by ChristopheTaton: http://wiki.apache.org/lucene-hadoop/EclipsePlugIn New page: = Hadoop Eclipse Plug-in = The Hadoop Eclipse Plug-in provides tools to ease the experience of Map/Reduce on Hadoop. Among other things, the plug-in provides support to: * create Mapper, Reducer, Driver classes; * browse and interact with distributed file systems; * submit jobs and monitor their execution. == Requirements == To ensure a safe behavior of the plug-in, you should consider the following facts and recommendations: * The plug-in has been tested on Eclipse 3.2+ only, using Java5+ compliant JVMs only. * To compile jobs on your development host, you need Hadoop jars. In most cases, you only need hadoop-X.Y-core.jar. Make sure you build your jobs with the same version of Hadoop as the version of Hadoop your execution environment currently runs. * Make sure you when you compile your jobs that the Java classes you generate are compatible with the JVM environment of your execution environment. A frequent issue is to have a Java5 execution environment that cannot executes your jobs because your jobs have been compiled with a Java6 compliance level. More will come here soon.