Apache Tez

Clone this repo:
  1. 9a6757b TEZ-4563: Bump org.bouncycastle:bcprov-jdk18on from 1.77 to 1.78 (#352). (dependabot, Reviewed by Ayush Saxena) by dependabot[bot] · 22 hours ago master
  2. 7a9211e TEZ-4559: Fix Retry logic in case of Recovery (#353). (Laszlo Bodor, reviewed by Ayush Saxena) by Bodor Laszlo · 4 days ago
  3. 66a6ca6 TEZ-4552. Upgrade protobuf to 3.24.4 due to CVE. (#345) (Shilun Fan reviewed by Laszlo Bodor) by slfan1989 · 5 days ago
  4. 071d447 TEZ-4560. Upgrade bouncycastle to 1.77 due to CVE. (#351) (Shilun Fan reviewed by Laszlo Bodor) by slfan1989 · 5 days ago
  5. 3925544 TEZ-4551. Upgrade commons-io to 2.16.0. (#344) (Shilun Fan reviewed by Laszlo Bodor) by slfan1989 · 5 days ago

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.