You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by ga...@apache.org on 2010/02/16 19:05:03 UTC

svn commit: r910628 - in /hadoop/pig/branches/branch-0.6: CHANGES.txt RELEASE_NOTES.txt build.xml

Author: gates
Date: Tue Feb 16 18:05:02 2010
New Revision: 910628

URL: http://svn.apache.org/viewvc?rev=910628&view=rev
Log:
Preparing for release 0.6.0.

Modified:
    hadoop/pig/branches/branch-0.6/CHANGES.txt
    hadoop/pig/branches/branch-0.6/RELEASE_NOTES.txt
    hadoop/pig/branches/branch-0.6/build.xml

Modified: hadoop/pig/branches/branch-0.6/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/pig/branches/branch-0.6/CHANGES.txt?rev=910628&r1=910627&r2=910628&view=diff
==============================================================================
--- hadoop/pig/branches/branch-0.6/CHANGES.txt (original)
+++ hadoop/pig/branches/branch-0.6/CHANGES.txt Tue Feb 16 18:05:02 2010
@@ -18,7 +18,7 @@
 
 Pig Change Log
 
-Release 0.6.0 - 2010-01-08
+Release 0.6.0 - 2010-02-10
 
 INCOMPATIBLE CHANGES
 

Modified: hadoop/pig/branches/branch-0.6/RELEASE_NOTES.txt
URL: http://svn.apache.org/viewvc/hadoop/pig/branches/branch-0.6/RELEASE_NOTES.txt?rev=910628&r1=910627&r2=910628&view=diff
==============================================================================
--- hadoop/pig/branches/branch-0.6/RELEASE_NOTES.txt (original)
+++ hadoop/pig/branches/branch-0.6/RELEASE_NOTES.txt Tue Feb 16 18:05:02 2010
@@ -1,10 +1,26 @@
-These notes are for Pig 0.3.0 release.
+These notes are for Pig 0.6.0 release.
 
 Highlights
 ==========
 
-The main focus of this release is multiquery support that allows to optimize
-multiple queries within the same script that share a computation.
+- Added Zebra as a contrib project.  See http://wiki.apache.org/pig/zebra
+- Added UDFContext, gives UDFs a way to pass info from front to back end and
+  gives UDFS access to JobConf in the backend.  PIG-1085
+- Added left outer join for fragment replicate join.  PIG-1036
+- Added ability to set job priority from Pig Latin.  PIG-1025
+- Enhanced multi-query to work with joins in some cases.  PIG-983
+- Reworked memory manager to significantly reduce GC Overhead and Out of Heap
+  failures.  PIG-975
+- Added Accumulator interface for UDFs.  PIG-979
+- Over 100 bug fixes and improvements.
+
+Incompatibilities
+=================
+PIG-922 changed LoadFunc.fieldsToRead's signature .  Compiles LoadFuncs will
+work as is, since the Pig code checks if the method conforms to the new
+signature and only invokes it in the case that it does.  If users wish to
+compile their LoadFunc, they will need to change this method to match the new
+signature.
 
 System Requirements
 ===================
@@ -13,14 +29,14 @@
 Java installation
 2. Ant build tool:  http://ant.apache.org - to build source only
 3. Cygwin: http://www.cygwin.com/ - to run under Windows 
-4. This release is compatible with Hadoop 0.18.x releases
+4. This release is compatible with Hadoop 0.20.x releases
 
 Trying the Release
 ==================
 
-1. Download pig-0.3.0.tar.gz
-2. Unpack the file: tar -xzvf pig-0.3.0.tar.gz
-3. Move into the installation directory: cd pig-0.3.0
+1. Download pig-0.6.0.tar.gz
+2. Unpack the file: tar -xzvf pig-0.6.0.tar.gz
+3. Move into the installation directory: cd pig-0.6.0
 4. To run pig without Hadoop cluster, execute the command below. This will
 take you into an interactive shell called grunt that allows you to navigate
 the local file system and execute Pig commands against the local files
@@ -42,14 +58,10 @@
 9. To build the tutorial:
     cd tutorial
     ant
-10. To run tutorial follow instructions in http://wiki.apache.org/pig/PigTutorial
+10. To run tutorial follow instructions in 
 
 Relevant Documentation
 ======================
 
-Pig Language Manual(including Grunt commands):
-http://wiki.apache.org/pig-data/attachments/FrontPage/attachments/plrm.htm 
-UDF Manual: http://wiki.apache.org/pig/UDFManual
-Piggy Bank: http://wiki.apache.org/pig/PiggyBank
-Pig Tutorial: http://wiki.apache.org/pig/PigTutorial
-Pig Eclipse Plugin (PigPen):  http://wiki.apache.org/pig/PigPen
+http://hadoop.apache.org/pig/docs/r0.6.0/
+http://wiki.apache.org/pig/

Modified: hadoop/pig/branches/branch-0.6/build.xml
URL: http://svn.apache.org/viewvc/hadoop/pig/branches/branch-0.6/build.xml?rev=910628&r1=910627&r2=910628&view=diff
==============================================================================
--- hadoop/pig/branches/branch-0.6/build.xml (original)
+++ hadoop/pig/branches/branch-0.6/build.xml Tue Feb 16 18:05:02 2010
@@ -24,7 +24,7 @@
     <!-- name and version properties -->
     <property name="name" value="pig" />
     <property name="Name" value="Pig" />
-    <property name="version" value="0.6.0-dev" />
+    <property name="version" value="0.6.1-dev" />
     <property name="final.name" value="${name}-${version}" />
     <condition property="isWindows">
         <os family="windows"/>