Apache Tez

Clone this repo:
  1. 03b5f1d TEZ-4636: Move to JDK-21+ (#418). (Ayush Saxena, reviewed by Laszlo Bodor, Mahesh Raju Somalaraju) by Ayush Saxena · 17 hours ago master
  2. b0a65ec TEZ-4631: Include an official script that installs hadoop and tez and runs a simple example DAG (#414) - addendum ASF license + shellcheck fixes (#417) (Laszlo Bodor reviewed by Ayush Saxena) by Bodor Laszlo · 2 weeks ago
  3. e920c33 TEZ-4627: Apache Tez Release 0.10.5 - update DOAP file (#415) by Bodor Laszlo · 3 weeks ago
  4. e847435 TEZ-4631: Include an official script that installs hadoop and tez and runs a simple example DAG (#414) (Laszlo Bodor reviewed by Ayush Saxena) by Bodor Laszlo · 3 weeks ago
  5. 51ad671 TEZ-4598: JDK-17: Migrate Tez to jdk17 (compile & runtime) (#407) (Mahesh Raju Somalaraju reviewed by Ayush Saxena, Laszlo Bodor) by Mahesh Raju Somalaraju · 6 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.