Description
I am facing with problem when RM UI always show submittedDAGs=0,
think the problem in this snippet of code:
public String submitDAGToAppMaster(....){ ........ if (dagPlan.getName().startsWith(TezConstants.TEZ_PREWARM_DAG_NAME_PREFIX)) { submittedDAGs.incrementAndGet(); } } }
Think we lost "!" in condition (according TEZ-3189)
if (!dagPlan.getName().startsWith(TezConstants.TEZ_PREWARM_DAG_NAME_PREFIX)) {
submittedDAGs.incrementAndGet();
}
Attachments
Attachments
Issue Links
- is broken by
-
TEZ-3189 Pre-warm dags should not be counted in submitted dags count by DAGAppMaster
- Closed