tree: f1c383da7ccfeef019fd2930e64bbee7c82cc373 [path history] [tgz]
  1. build-tools/
  2. docs/
  3. hadoop-shim/
  4. hadoop-shim-impls/
  5. tez-api/
  6. tez-common/
  7. tez-dag/
  8. tez-dist/
  9. tez-examples/
  10. tez-ext-service-tests/
  11. tez-mapreduce/
  12. tez-plugins/
  13. tez-runtime-internals/
  14. tez-runtime-library/
  15. tez-tests/
  16. tez-tools/
  17. tez-ui/
  18. .gitignore
  19. .travis.yml
  20. BUILDING.txt
  21. KEYS
  22. LICENSE.txt
  23. NOTICE.txt
  24. pom.xml
  25. README.md
  26. 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.