Upgrade jettison to 1.5.3 to fix CVE-2022-45685, CVE-2022-45693 (#271) (Bilwa S T reviewed by Laszlo Bodor)

2 files changed
tree: b1c3d605b2448a0853065d2370aa7217b639f6c1
  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. .travis.yml
  23. BUILDING.txt
  24. Jenkinsfile
  25. KEYS
  26. LICENSE.txt
  27. NOTICE.txt
  28. pom.xml
  29. README.md
  30. 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.