You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tez.apache.org by "Artem Velykorodnyi (JIRA)" <ji...@apache.org> on 2017/05/23 16:26:04 UTC

[jira] [Created] (TEZ-3736) SubmittedDAGs is always 0 in Resource Manager UI

Artem Velykorodnyi created TEZ-3736:
---------------------------------------

             Summary: SubmittedDAGs is always 0 in Resource Manager UI
                 Key: TEZ-3736
                 URL: https://issues.apache.org/jira/browse/TEZ-3736
             Project: Apache Tez
          Issue Type: Bug
    Affects Versions: 0.8.4
            Reporter: Artem Velykorodnyi
            Priority: Minor


I am facing with problem when RM UI always show submittedDAGs=0, 
think the problem in this snippet of code:

{code}
public String submitDAGToAppMaster(....){
........
      if (dagPlan.getName().startsWith(TezConstants.TEZ_PREWARM_DAG_NAME_PREFIX)) {
        submittedDAGs.incrementAndGet();
         }
     }
}
{code}
Think we lost "!" in condition (according TEZ-3189)
{code}
      if (!dagPlan.getName().startsWith(TezConstants.TEZ_PREWARM_DAG_NAME_PREFIX)) {
        submittedDAGs.incrementAndGet();
      }
{code}






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