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 F0CE19614 for ; Fri, 9 Dec 2011 00:40:58 +0000 (UTC) Received: (qmail 76668 invoked by uid 500); 9 Dec 2011 00:40:58 -0000 Delivered-To: apmail-pig-commits-archive@pig.apache.org Received: (qmail 76632 invoked by uid 500); 9 Dec 2011 00:40:58 -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 76625 invoked by uid 99); 9 Dec 2011 00:40:58 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Dec 2011 00:40:58 +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, 09 Dec 2011 00:40:57 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 035E5238899C for ; Fri, 9 Dec 2011 00:40:37 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1212205 - in /pig/trunk: CHANGES.txt src/org/apache/pig/backend/hadoop/executionengine/HExecutionEngine.java Date: Fri, 09 Dec 2011 00:40:36 -0000 To: commits@pig.apache.org From: daijy@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111209004037.035E5238899C@eris.apache.org> Author: daijy Date: Fri Dec 9 00:40:36 2011 New Revision: 1212205 URL: http://svn.apache.org/viewvc?rev=1212205&view=rev Log: PIG-2415: A fix for 0.23 local mode: put yarn-default.xml into the configuration Modified: pig/trunk/CHANGES.txt pig/trunk/src/org/apache/pig/backend/hadoop/executionengine/HExecutionEngine.java Modified: pig/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/pig/trunk/CHANGES.txt?rev=1212205&r1=1212204&r2=1212205&view=diff ============================================================================== --- pig/trunk/CHANGES.txt (original) +++ pig/trunk/CHANGES.txt Fri Dec 9 00:40:36 2011 @@ -326,6 +326,8 @@ Release 0.9.2 - Unreleased BUG FIXES +PIG-2415: A fix for 0.23 local mode: put "yarn-default.xml" into the configuration (daijy) + PIG-2402: inIllustrator condition in PigMapReduce is wrong for hadoop 23 (daijy) PIG-2370: SkewedParitioner results in Kerberos error (daijy) Modified: pig/trunk/src/org/apache/pig/backend/hadoop/executionengine/HExecutionEngine.java URL: http://svn.apache.org/viewvc/pig/trunk/src/org/apache/pig/backend/hadoop/executionengine/HExecutionEngine.java?rev=1212205&r1=1212204&r2=1212205&view=diff ============================================================================== --- pig/trunk/src/org/apache/pig/backend/hadoop/executionengine/HExecutionEngine.java (original) +++ pig/trunk/src/org/apache/pig/backend/hadoop/executionengine/HExecutionEngine.java Fri Dec 9 00:40:36 2011 @@ -173,6 +173,7 @@ public class HExecutionEngine { jc = new JobConf(false); jc.addResource("core-default.xml"); jc.addResource("mapred-default.xml"); + jc.addResource("yarn-default.xml"); recomputeProperties(jc, properties); properties.setProperty("mapreduce.framework.name", "local");