Author: olga
Date: Tue Nov 25 08:35:46 2008
New Revision: 720532

URL: http://svn.apache.org/viewvc?rev=720532&view=rev
Log:
release related changes

Added:
    hadoop/pig/branches/branch-0.1/RELEASE_NOTES.txt
Modified:
    hadoop/pig/branches/branch-0.1/README.txt

Modified: hadoop/pig/branches/branch-0.1/README.txt
URL: 
http://svn.apache.org/viewvc/hadoop/pig/branches/branch-0.1/README.txt?rev=720532&r1=720531&r2=720532&view=diff
==============================================================================
--- hadoop/pig/branches/branch-0.1/README.txt (original)
+++ hadoop/pig/branches/branch-0.1/README.txt Tue Nov 25 08:35:46 2008
@@ -17,7 +17,7 @@
 
 For the latest information about Pig, please visit our website at:
 
-   http://incubator.apache.org/pig/
+   http://hadoop.apache.org/pig/
 
 and our wiki, at:
 
@@ -36,15 +36,3 @@
 
 We welcome all contributions. For the details, please, visit
 http://wiki.apache.org/pig/HowToContribute.
-
-Incubator Disclaimer
-=====================
-
-Apache Pig is an effort undergoing incubation at The Apache Software
-Foundation (ASF). Incubation is required of all newly accepted projects 
-until a further review indicates that the infrastructure, communications, 
-and decision making process have stabilized in a manner consistent with 
-other successful ASF projects. While incubation status is not necessarily
-a reflection of the completeness or stability of the code, it does indicate
-that the project has yet to be fully endorsed by the ASF.
-

Added: hadoop/pig/branches/branch-0.1/RELEASE_NOTES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/pig/branches/branch-0.1/RELEASE_NOTES.txt?rev=720532&view=auto
==============================================================================
--- hadoop/pig/branches/branch-0.1/RELEASE_NOTES.txt (added)
+++ hadoop/pig/branches/branch-0.1/RELEASE_NOTES.txt Tue Nov 25 08:35:46 2008
@@ -0,0 +1,46 @@
+This notes are for Pig 0.1.0, our initial release from the incubator.
+
+System Requirements
+===================
+
+1. Java 1.5.x or newer, preferably from Sun. Set JAVA_HOME to the root of your
+Java installation
+2. Ant build tool:  http://ant.apache.org - to build source only
+3. Sigwin: http://www.cygwin.com/ - to run under windows 
+
+Trying the Release
+==================
+
+1. Download pig-0.1.0.tar.gz
+2. Unpack the file: tar -xzvf pig-0.1.0.tar.gz
+3. Move into the installation directory: cd pig-0.1.0-incubating
+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
+    bin/pig -x local
+5. To run on your Hadoop cluster, you need to set PIG_CLASSPATH environment
+variable to point to the directory with your hadoop-site.xml file and then run
+pig. The commands below will take you into an interactive shell called grunt
+that allows you to navigate Hadoop DFS and execute Pig commands against it
+export PIG_CLASSPATH=/hadoop/conf
+    bin/pig
+6. To build your own version of pig.jar run
+    ant
+7. To run unit tests run
+    ant test 
+8. To build jar file with available user defined functions run commands below.
+This currently only works with Java 1.6.x.
+    cd contrib/piggybank/java
+    ant
+9. To build the tutorial:
+    cd tutorial
+    ant
+10. To run tutorial follow instructions in 
http://wiki.apache.org/pig/PigTutorial
+
+Relevant Documentation
+======================
+
+Pig Language Manual: http://wiki.apache.org/pig/PigLatin 
+Grunt Shell Manual: http://wiki.apache.org/pig/Grunt
+Piggy Bank: http://wiki.apache.org/pig/PiggyBank
+Pig Tutorial: http://wiki.apache.org/pig/PigTutorial


Reply via email to