TEZ-2749. TaskInfo in history parser should not depend on the apache
directory project. Fix master build against hadoop-2.4. (sseth)
2 files changed
tree: 00978decee452dce24fee9efca3b7b63970c443d
  1. build-tools/
  2. docs/
  3. tez-api/
  4. tez-common/
  5. tez-dag/
  6. tez-dist/
  7. tez-examples/
  8. tez-ext-service-tests/
  9. tez-mapreduce/
  10. tez-plugins/
  11. tez-runtime-internals/
  12. tez-runtime-library/
  13. tez-tests/
  14. tez-tools/
  15. tez-ui/
  16. .gitignore
  17. BUILDING.txt
  18. CHANGES.txt
  19. KEYS
  20. LICENSE.txt
  21. NOTICE.txt
  22. pom.xml
  23. README.md
  24. 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.