[
https://issues.apache.org/jira/browse/TEZ-3736?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16022924#comment-16022924
]
Eric Badger commented on TEZ-3736:
----------------------------------
lgtm +1 (non-binding). However, we'll need a committer to review before this
actually gets committed.
As an aside, you don't want to set the Fix Version until the fix is committed.
The affect version is what we use to figure out what versions the bug affects.
The fix version is then what we use to figure out where the fix was committed.
> 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
> Labels: patch
> Fix For: 0.8.4
>
> Attachments: TEZ-3736.001.patch
>
>
> 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)