Akira AJISAKA created YARN-1132:
-----------------------------------

             Summary: QueueMetrics.java has wrong comments
                 Key: YARN-1132
                 URL: https://issues.apache.org/jira/browse/YARN-1132
             Project: Hadoop YARN
          Issue Type: Bug
          Components: documentation
    Affects Versions: 2.1.0-beta
            Reporter: Akira AJISAKA
            Priority: Minor


I found o.a.h.yarn.server.resourcemanager.scheduler.QueueMetrics.java has wrong 
comments

{code}
  @Metric("# of reserved memory in MB") MutableGaugeInt reservedMB;
  @Metric("# of active users") MutableGaugeInt activeApplications;
{code}

they should be fixed as follows:

{code}
  @Metric("Reserved memory in MB") MutableGaugeInt reservedMB;
  @Metric("# of active applications") MutableGaugeInt activeApplications;
{code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to