Uploaded image for project: 'Hadoop YARN'
  1. Hadoop YARN
  2. YARN-8676

Incorrect progress index in old yarn UI

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Patch Available
    • Critical
    • Resolution: Unresolved
    • None
    • None
    • None
    • None

    Description

      The index of parseHadoopProgress index is wrong in WebPageUtils#getAppsTableColumnDefs

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

      should be

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

      Attachments

        1. YARN-8676.001.patch
          1 kB
          Yeliang Cang

        Issue Links

          Activity

            People

              Cyl Yeliang Cang
              Cyl Yeliang Cang
              Votes:
              0 Vote for this issue
              Watchers:
              6 Start watching this issue

              Dates

                Created:
                Updated: