0 votes
in Hadoop by

What happens if a ResourceManager fails while executing an application in a high availability cluster?

1 Answer

0 votes
by

In a high availability cluster, there are two ResourceManagers: one active and the other standby. If a ResourceManager fails in the case of a high availability cluster, the standby will be elected as active and instructs the ApplicationMaster to abort. The ResourceManager recovers its running state by taking advantage of the container statuses sent from all node managers.

...