Return-Path: X-Original-To: apmail-pig-commits-archive@www.apache.org Delivered-To: apmail-pig-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id CA5C5D430 for ; Fri, 21 Sep 2012 20:31:40 +0000 (UTC) Received: (qmail 36933 invoked by uid 500); 21 Sep 2012 20:31:40 -0000 Delivered-To: apmail-pig-commits-archive@pig.apache.org Received: (qmail 36879 invoked by uid 500); 21 Sep 2012 20:31:40 -0000 Mailing-List: contact commits-help@pig.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@pig.apache.org Delivered-To: mailing list commits@pig.apache.org Received: (qmail 36872 invoked by uid 99); 21 Sep 2012 20:31:40 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Sep 2012 20:31:40 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Sep 2012 20:31:39 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 7A4872388A91 for ; Fri, 21 Sep 2012 20:30:56 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1388668 - in /pig/branches/branch-0.9: CHANGES.txt src/docs/src/documentation/content/xdocs/start.xml Date: Fri, 21 Sep 2012 20:30:56 -0000 To: commits@pig.apache.org From: jcoveney@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120921203056.7A4872388A91@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jcoveney Date: Fri Sep 21 20:30:55 2012 New Revision: 1388668 URL: http://svn.apache.org/viewvc?rev=1388668&view=rev Log: PIG-2852: Update documentation regarding parallel local mode execution (cheolsoo via jcoveney) Modified: pig/branches/branch-0.9/CHANGES.txt pig/branches/branch-0.9/src/docs/src/documentation/content/xdocs/start.xml Modified: pig/branches/branch-0.9/CHANGES.txt URL: http://svn.apache.org/viewvc/pig/branches/branch-0.9/CHANGES.txt?rev=1388668&r1=1388667&r2=1388668&view=diff ============================================================================== --- pig/branches/branch-0.9/CHANGES.txt (original) +++ pig/branches/branch-0.9/CHANGES.txt Fri Sep 21 20:30:55 2012 @@ -22,6 +22,8 @@ Release 0.9.3 - Unreleased IMPROVEMENTS +PIG-2852: Update documentation regarding parallel local mode execution (cheolsoo via jcoveney) + PIG-2766: Pig-HCat Usability (vikram.dixit via daijy) PIG-2555: PigStorageSchema initializes schema and PigContext for every tuple (rangadi via dvryaboy) Modified: pig/branches/branch-0.9/src/docs/src/documentation/content/xdocs/start.xml URL: http://svn.apache.org/viewvc/pig/branches/branch-0.9/src/docs/src/documentation/content/xdocs/start.xml?rev=1388668&r1=1388667&r2=1388668&view=diff ============================================================================== --- pig/branches/branch-0.9/src/docs/src/documentation/content/xdocs/start.xml (original) +++ pig/branches/branch-0.9/src/docs/src/documentation/content/xdocs/start.xml Fri Sep 21 20:30:55 2012 @@ -121,7 +121,7 @@ Test the Pig installation with this simp Execution Modes

Pig has two execution modes or exectypes:

    -
  • Local Mode - To run Pig in local mode, you need access to a single machine; all files are installed and run using your local host and file system. Specify local mode using the -x flag (pig -x local). +
  • Local Mode - To run Pig in local mode, you need access to a single machine; all files are installed and run using your local host and file system. Specify local mode using the -x flag (pig -x local). Note that local mode does not support parallel mapper execution with Hadoop 0.20.x and 1.0.0. This is because the LocalJobRunner of these Hadoop versions is not thread-safe.
  • Mapreduce Mode - To run Pig in mapreduce mode, you need access to a Hadoop cluster and HDFS installation. Mapreduce mode is the default mode; you can, but don't need to, specify it using the -x flag (pig OR pig -x mapreduce).