TEZ-431. Implement fault tolerance, retries and event flow for dealing with failed inputs (bikas)
30 files changed
tree: 36136da2451744bb2c84e0125f6ed4e2abe9e47d
  1. docs/
  2. example_jobs/
  3. ljr_helper/
  4. tez-api/
  5. tez-common/
  6. tez-dag/
  7. tez-dist/
  8. tez-mapreduce/
  9. tez-mapreduce-examples/
  10. tez-mapreduce-tests/
  11. tez-runtime-internals/
  12. tez-runtime-library/
  13. tez-yarn-client/
  14. .gitignore
  15. INSTALL.txt
  16. pom.xml
  17. README.md
README.md

tez

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.