Apache Tez

Clone this repo:
  1. f09ba7f TEZ-4669: Spotbugs fails in precommit (#457) (Laszlo Bodor reviewed by Ayush Saxena) by Bodor Laszlo · 8 days ago master
  2. 1fc0035 TEZ-4654: Migrate from commons-lang2.x to commons-lang3.x (#441) (Raghav Aggarwal reviewed by Laszlo Bodor) by Raghav Aggarwal · 11 days ago
  3. ffd346b TEZ-4683: Fix tez framework mode config name (#455) (Raghav Aggarwal reviewed by Laszlo Bodor) by Raghav Aggarwal · 13 days ago
  4. 8dda584 TEZ-4679: Tez UI doesn't build on arm64 - Could not download Node.js (#454) (Raghav Aggarwal reviewed by Laszlo Bodor) by Raghav Aggarwal · 2 weeks ago
  5. 99ef6d2 TEZ-4676: [JDK25]: Compile on JDK25 + Github actions (#453). (Ayush Saxena, reviewed by Laszlo Bodor) by Ayush Saxena · 2 weeks 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.