TEZ-4548: InputDataInformationEvent to be read from serialized payload from filesystem (#341) (Laszlo Bodor reviewed by Ayush Saxena)

12 files changed
tree: 2103f4d3e8aa5bc205f50e0b5bf2d2f2b864382e
  1. .github/
  2. build-tools/
  3. docs/
  4. hadoop-shim/
  5. hadoop-shim-impls/
  6. tez-api/
  7. tez-build-tools/
  8. tez-common/
  9. tez-dag/
  10. tez-dist/
  11. tez-examples/
  12. tez-ext-service-tests/
  13. tez-mapreduce/
  14. tez-plugins/
  15. tez-runtime-internals/
  16. tez-runtime-library/
  17. tez-tests/
  18. tez-tools/
  19. tez-ui/
  20. .asf.yaml
  21. .gitignore
  22. BUILDING.txt
  23. Jenkinsfile
  24. LICENSE
  25. NOTICE
  26. pom.xml
  27. README.md
  28. 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.