TEZ-4384: Remove unused EnvironmentUpdateUtils remaining from TEZ-1837 (#186) (Laszlo Attila Toth reviewed by Laszlo Bodor)

2 files changed
tree: 334944de137077ae835e9711dc53b5ba30981d5a
  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. .asf.yaml
  20. .gitignore
  21. .travis.yml
  22. BUILDING.txt
  23. Jenkinsfile
  24. KEYS
  25. LICENSE.txt
  26. NOTICE.txt
  27. pom.xml
  28. README.md
  29. 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.