Tez 0.7.1
Merge remote-tracking branch 'origin/branch-0.7' into branch-0.7.1
tree: 3f9c7a072b9c7b1eaa783db7da9b686a3b74a781
  1. build-tools/
  2. docs/
  3. tez-api/
  4. tez-common/
  5. tez-dag/
  6. tez-dist/
  7. tez-examples/
  8. tez-mapreduce/
  9. tez-plugins/
  10. tez-runtime-internals/
  11. tez-runtime-library/
  12. tez-tests/
  13. tez-tools/
  14. tez-ui/
  15. .gitignore
  16. BUILDING.txt
  17. CHANGES.txt
  18. KEYS
  19. LICENSE.txt
  20. NOTICE.txt
  21. pom.xml
  22. README.md
  23. Tez_DOAP.rdf
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 its 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.