You are viewing a plain text version of this content. The canonical link for it is here.
Posted to yarn-issues@hadoop.apache.org by "Yeliang Cang (JIRA)" <ji...@apache.org> on 2018/08/17 05:47:00 UTC

[jira] [Updated] (YARN-8676) Incorrect progress index in old yarn UI

     [ https://issues.apache.org/jira/browse/YARN-8676?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Yeliang Cang updated YARN-8676:
-------------------------------
    Description: 
The index of parseHadoopProgress index is wrong in WebPageUtils#getAppsTableColumnDefs
{code:java}
if (isFairSchedulerPage) {
 sb.append("[15]");
} else if (isResourceManager) {
 sb.append("[17]");
} else {
 sb.append("[9]");
}

{code}
should be
{code:java}
if (isFairSchedulerPage) {
 sb.append("[16]");
} else if (isResourceManager) {
 sb.append("[18]");
} else {
 sb.append("[11]");
}

{code}

  was:
The index of progress index is wrong in WebPageUtils#getAppsTableColumnDefs

{code}

if (isFairSchedulerPage) {
 sb.append("[15]");
} else if (isResourceManager) {
 sb.append("[17]");
} else {
 sb.append("[9]");
}

{code}

should be

{code}

if (isFairSchedulerPage) {
 sb.append("[16]");
} else if (isResourceManager) {
 sb.append("[18]");
} else {
 sb.append("[11]");
}

{code}


> Incorrect progress index in old yarn UI
> ---------------------------------------
>
>                 Key: YARN-8676
>                 URL: https://issues.apache.org/jira/browse/YARN-8676
>             Project: Hadoop YARN
>          Issue Type: Bug
>            Reporter: Yeliang Cang
>            Assignee: Yeliang Cang
>            Priority: Major
>
> The index of parseHadoopProgress index is wrong in WebPageUtils#getAppsTableColumnDefs
> {code:java}
> if (isFairSchedulerPage) {
>  sb.append("[15]");
> } else if (isResourceManager) {
>  sb.append("[17]");
> } else {
>  sb.append("[9]");
> }
> {code}
> should be
> {code:java}
> if (isFairSchedulerPage) {
>  sb.append("[16]");
> } else if (isResourceManager) {
>  sb.append("[18]");
> } else {
>  sb.append("[11]");
> }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

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