Tez 0.4.0-incubating
Add LICENSE.txt and NOTICE.txt to javadoc artifacts created by release.
Update fix date in CHANGES.txt
22 files changed
tree: a486485d5e02efb4b7d6ebb814fefdcd13d7b956
  1. docs/
  2. tez-api/
  3. tez-common/
  4. tez-dag/
  5. tez-dist/
  6. tez-mapreduce/
  7. tez-mapreduce-examples/
  8. tez-runtime-internals/
  9. tez-runtime-library/
  10. tez-tests/
  11. .gitignore
  12. BUILDING.txt
  13. CHANGES.txt
  14. DISCLAIMER.txt
  15. INSTALL.txt
  16. KEYS
  17. LICENSE.txt
  18. NOTICE.txt
  19. pom.xml
  20. README.md
README.md

Apache Tez

Apache Tez is a generic data-processing pipeline engine envisioned as a low-level engine for higher abstractions such as Apache Hadoop Map-Reduce, Apache Pig, Apache Hive etc.

At it's heart, tez is very simple and has just two components:

  • The data-processing pipeline engine where-in one can plug-in input, processing and output implementations to perform arbitrary data-processing. Every ‘task’ in tez has the following:
  • Input to consume key/value pairs from.
  • Processor to process them.
  • Output to collect the processed key/value pairs.
  • A master for the data-processing application, where-by one can put together arbitrary data-processing ‘tasks’ described above into a task-DAG to process data as desired. The generic master is implemented as a Apache Hadoop YARN ApplicationMaster.