From 7a6290dbd71d6770bee79d646e1a4910bba408da Mon Sep 17 00:00:00 2001 From: merobi-hub Date: Mon, 6 Apr 2026 08:09:59 -0400 Subject: [PATCH 1/3] Convert to markdown Signed-off-by: merobi-hub --- README.txt | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 README.txt diff --git a/README.txt b/README.txt deleted file mode 100644 index 7505216d5b..0000000000 --- a/README.txt +++ /dev/null @@ -1,39 +0,0 @@ -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 or Apache Tez -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://pig.apache.org/ - -and our wiki, at: - - https://cwiki.apache.org/confluence/display/PIG/Index - -Getting Started -=============== -1. To learn about Pig, try https://cwiki.apache.org/confluence/display/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 -https://cwiki.apache.org/confluence/display/PIG/PiggyBank - - -Contributing to the Project -=========================== - -We welcome all contributions. For the details, please, visit -https://cwiki.apache.org/confluence/display/PIG/HowToContribute From 16a88d2bcb677ba05e4a07f6cdf48b7e1bff2b00 Mon Sep 17 00:00:00 2001 From: merobi-hub Date: Mon, 6 Apr 2026 08:13:46 -0400 Subject: [PATCH 2/3] New file Signed-off-by: merobi-hub --- README.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000000..7344250820 --- /dev/null +++ b/README.md @@ -0,0 +1,37 @@ +# 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 or Apache Tez +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://pig.apache.org/ + +and our wiki, at: + + https://cwiki.apache.org/confluence/display/PIG/Index + +## Getting Started + +1. To learn about Pig, try https://cwiki.apache.org/confluence/display/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 +https://cwiki.apache.org/confluence/display/PIG/PiggyBank + + +## Contributing to the Project + +We welcome all contributions. For the details, please, visit +https://cwiki.apache.org/confluence/display/PIG/HowToContribute From da6463778c661ee6f397cd2e50d7a0b30e4a202f Mon Sep 17 00:00:00 2001 From: merobi-hub Date: Mon, 6 Apr 2026 08:18:57 -0400 Subject: [PATCH 3/3] Link to Tez website Signed-off-by: merobi-hub --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7344250820..8b104aaa4f 100644 --- a/README.md +++ b/README.md @@ -7,10 +7,10 @@ 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 or Apache Tez -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. +Pig compiles these dataflow programs into (sequences of) map-reduce or +[Apache Tez](https://tez.apache.org/) 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