TEZ-4052. Fit dot files ASF License issues - part 2 (Jonathan Eagles via kshukla)
3 files changed
tree: f180f50f71642dce9dca07361b71d4fad8e8ec98
  1. build-tools/
  2. docs/
  3. hadoop-shim/
  4. hadoop-shim-impls/
  5. tez-api/
  6. tez-build-tools/
  7. tez-common/
  8. tez-dag/
  9. tez-dist/
  10. tez-examples/
  11. tez-ext-service-tests/
  12. tez-mapreduce/
  13. tez-plugins/
  14. tez-runtime-internals/
  15. tez-runtime-library/
  16. tez-tests/
  17. tez-tools/
  18. tez-ui/
  19. .gitignore
  20. .travis.yml
  21. BUILDING.txt
  22. KEYS
  23. LICENSE.txt
  24. NOTICE.txt
  25. pom.xml
  26. README.md
  27. 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.