[
https://issues.apache.org/jira/browse/YARN-8676?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17156533#comment-17156533
]
Prabhu Joseph commented on YARN-8676:
-------------------------------------
[~Cyl] Can you share the screenshot of RM UI before the patch which shows the
issue and the screenshot after the fix which shows the issue gets fixed. Thanks.
> 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: Critical
> Attachments: YARN-8676.001.patch
>
>
> 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
(v8.3.4#803005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]