TEZ-2781. Fallback to send only TaskAttemptFailedEvent if taskFailed heartbeat fails (zjffdu)

(cherry picked from commit f9d15c8695de7975817631b051450336bc5eadee)

Conflicts:
	CHANGES.txt
	tez-dag/src/main/java/org/apache/tez/dag/app/TaskCommunicatorManager.java

(cherry picked from commit 8d49fd5285016fb64ebccdc9cf31c408c79ebaaf)

Conflicts:
	CHANGES.txt
	tez-dag/src/main/java/org/apache/tez/dag/app/TaskAttemptListenerImpTezDag.java
	tez-dag/src/main/java/org/apache/tez/runtime/task/TaskReporter.java

(cherry picked from commit 3a8bf0e0afb0a30d5c4cbf82d1e2ce9e0dd22b4a)

Conflicts:
	CHANGES.txt
3 files changed
tree: 01ad81fcaede28b48ec75127610785dcd73722a4
  1. docs/
  2. tez-api/
  3. tez-common/
  4. tez-dag/
  5. tez-dist/
  6. tez-examples/
  7. tez-mapreduce/
  8. tez-plugins/
  9. tez-runtime-internals/
  10. tez-runtime-library/
  11. tez-tests/
  12. tez-tools/
  13. .gitignore
  14. BUILDING.txt
  15. CHANGES.txt
  16. KEYS
  17. LICENSE.txt
  18. NOTICE.txt
  19. pom.xml
  20. README.md
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 it's 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.