You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mapreduce-dev@hadoop.apache.org by "Bilwa S T (JIRA)" <ji...@apache.org> on 2017/03/25 08:25:41 UTC

[jira] [Created] (MAPREDUCE-6867) ApplicationMaster hung on OOM Error

Bilwa S T created MAPREDUCE-6867:
------------------------------------

             Summary: ApplicationMaster hung on OOM Error
                 Key: MAPREDUCE-6867
                 URL: https://issues.apache.org/jira/browse/MAPREDUCE-6867
             Project: Hadoop Map/Reduce
          Issue Type: Bug
          Components: applicationmaster
            Reporter: Bilwa S T


Whenever OOM Error is thown, {{YarnUncaughtExceptionHandler}} will call {{ExitUtil.halt(-1)}}.But while halting, OOM might occur which is not handled. 

We came across a scenario where in when we submit mapreduce application ,OOM error occured in {{committerEventProcessor}} and then AM did not halt and did not log the following.Finally AM got hang since it's not thrown to main thread.

{code}LOG.info("Halt with status " + status + " Message: " + msg);{code}

 *org.apache.hadoop.util.ExitUtil.halt(int, String)* 
{code}
public static void halt(int status, String msg) throws HaltException {
    LOG.info("Halt with status " + status + " Message: " + msg);
    if (systemHaltDisabled) {
      HaltException ee = new HaltException(status, msg);
      LOG.fatal("Halt called", ee);
      if (null == firstHaltException) {
        firstHaltException = ee;
      }
      throw ee;
    }
    Runtime.getRuntime().halt(status);
  }
{code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

---------------------------------------------------------------------
To unsubscribe, e-mail: mapreduce-dev-unsubscribe@hadoop.apache.org
For additional commands, e-mail: mapreduce-dev-help@hadoop.apache.org