forked fromdvryaboy/pig
- Notifications
You must be signed in to change notification settings - Fork3
aniket486/pig
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Apache Pig===========Pig is a dataflow programming environment for processing very large files. Pig'slanguage is called Pig Latin. A Pig Latin program consists of a directedacyclic graph where each node represents an operation that transforms data.Operations are of two flavors: (1) relational-algebra style operations such asjoin, filter, project; (2) functional-programming style operators such as map,reduce. Pig compiles these dataflow programs into (sequences of) map-reduce jobs andexecutes them using Hadoop. It is also possible to execute Pig Latin programsin a "local" mode (without Hadoop cluster), in which case all processing takesplace in a single local JVM. General Info===============For the latest information about Pig, please visit our website at:http://pig.apache.org/and our wiki, at:http://wiki.apache.org/pig/Getting Started===============1. To learn about Pig, tryhttp://wiki.apache.org/pig/PigTutorial2. To build and run Pig, tryhttp://wiki.apache.org/pig/BuildPig andhttp://wiki.apache.org/pig/RunPig3. To check out the function library, tryhttp://wiki.apache.org/pig/PiggyBankContributing to the Project===========================We welcome all contributions. For the details, please, visithttp://wiki.apache.org/pig/HowToContribute.