Author: olga Date: Tue Aug 5 16:00:28 2008 New Revision: 683021 URL: http://svn.apache.org/viewvc?rev=683021&view=rev Log: more details on the project added to README
Modified: incubator/pig/branches/branch-0.1/README.txt Modified: incubator/pig/branches/branch-0.1/README.txt URL: http://svn.apache.org/viewvc/incubator/pig/branches/branch-0.1/README.txt?rev=683021&r1=683020&r2=683021&view=diff ============================================================================== --- incubator/pig/branches/branch-0.1/README.txt (original) +++ incubator/pig/branches/branch-0.1/README.txt Tue Aug 5 16:00:28 2008 @@ -1,3 +1,20 @@ +Apache Pig +=========== +Pig is a dataflow programming environment for processing very large files. Pig's +language is called Pig Latin. A Pig Latin program consists of a directed +acyclic graph where each node represents an operation that transforms data. +Operations are of two flavors: (1) relational-algebra style operations such as +join, filter, project; (2) functional-programming style operators such as map, +reduce. + +Pig compiles these dataflow programs into (sequences of) map-reduce jobs and +executes them using Hadoop. It is also possible to execute Pig Latin programs +in a "local" mode (without Hadoop cluster), in which case all processing takes +place in a single local JVM. + +General Info +=============== + For the latest information about Pig, please visit our website at: http://incubator.apache.org/pig/ @@ -6,8 +23,22 @@ http://wiki.apache.org/pig/ -Disclaimer -========== +Getting Started +=============== +1. To learn about Pig, try http://wiki.apache.org/pig/PigTutorial +2. To build and run Pig, try http://wiki.apache.org/pig/BuildPig and +http://wiki.apache.org/pig/RunPig +3. To check out the function library, try http://wiki.apache.org/pig/PiggyBank + + +Contributing to the Project +=========================== + +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