Apache Tez

Clone this repo:
  1. 1c8af3e TEZ-4657: Upgrade to Hadoop 3.4.2 (#437). (Laszlo Bodor, reviewed by Ayush Saxena) by Bodor Laszlo · 7 days ago master
  2. 5775337 TEZ-4659: Refactoring minor issues in profile output servlet (#439). (Ayush Saxena, reviewed by Laszlo Bodor) by Ayush Saxena · 3 weeks ago
  3. 2489b91 TEZ-4656: Checkstyle to not complain about 'case' branches are indented more than the 'switch' statement (#436) (Laszlo Bodor reviewed by Ayush Saxena) by Bodor Laszlo · 5 weeks ago
  4. 795576f TEZ-4652: ASF logo is too big (#435). (Shohei Okumiya, reviewed by Stamatis Zampetakis, Ayush Saxena) by Shohei Okumiya · 5 weeks ago
  5. 8be8008 TEZ-4650: Remove useless logic from AM plugin management: processSchedulerDescriptors (#433) (Laszlo Bodor reviewed by Ayush Saxena) by Bodor Laszlo · 5 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.