apache / pig mirrored from git://git.apache.org/pig.git
- Source
- Commits
- Network (4)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
trunk
Alan Gates (author)
Thu May 27 18:14:03 -0700 2010
pig /
| name | age | message | |
|---|---|---|---|
| |
.eclipse.templates/ | Tue Apr 27 17:09:15 -0700 2010 | |
| |
CHANGES.txt | Wed May 26 11:33:09 -0700 2010 | |
| |
KEYS | Wed May 05 10:57:24 -0700 2010 | |
| |
LICENSE.txt | Thu Jul 03 11:08:26 -0700 2008 | |
| |
NOTICE.txt | Wed Sep 10 14:52:47 -0700 2008 | |
| |
README.txt | Fri Mar 27 09:15:38 -0700 2009 | |
| |
RELEASE_NOTES.txt | Mon Jun 22 10:30:54 -0700 2009 | |
| |
autocomplete | Wed Jul 23 11:36:19 -0700 2008 | |
| |
bin/ | Fri May 21 18:50:01 -0700 2010 | |
| |
build.xml | Fri May 21 11:11:49 -0700 2010 | |
| |
conf/ | Fri May 14 11:01:44 -0700 2010 | |
| |
contrib/ | Fri May 21 10:49:24 -0700 2010 | |
| |
ivy.xml | Tue Mar 30 12:54:56 -0700 2010 | |
| |
ivy/ | Tue Mar 30 12:54:56 -0700 2010 | |
| |
lib-src/ | Fri Mar 26 15:33:05 -0700 2010 | |
| |
lib/ | Fri May 21 11:11:49 -0700 2010 | |
| |
license/ | Wed Dec 16 15:50:32 -0800 2009 | |
| |
src/ | Thu May 27 18:14:03 -0700 2010 | |
| |
test/ | Wed May 26 11:33:09 -0700 2010 | |
| |
tutorial/ | Fri Nov 14 17:19:56 -0800 2008 |
README.txt
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://hadoop.apache.org/pig/ and our wiki, at: http://wiki.apache.org/pig/ 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.


