You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "dhruba borthakur (JIRA)" <ji...@apache.org> on 2008/10/17 00:24:44 UTC

[jira] Commented: (HADOOP-4435) The JobTracker should display the amount of heap memory used

    [ https://issues.apache.org/jira/browse/HADOOP-4435?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12640357#action_12640357 ] 

dhruba borthakur commented on HADOOP-4435:
------------------------------------------

I propose to add the following two methods to ClusterSummary:

{code}
  /**
   * Get the total heap memory used by the <code>JobTracker</code>
   * 
   * @return the size of heap memory used by the <code>JobTracker</code>
   */
  public long getUsedMemory() {
    return used_memory;
  }

  /**
   * Get the maximum configured heap memory that can be used by the <code>JobTracker</code>
   * 
   * @return the configured size of max heap memory that can be used by the <code>JobTracker</code>
   */
  public long getMaxMemory() {
    return max_memory;
  }


{code}

> The JobTracker should display the amount of heap memory used
> ------------------------------------------------------------
>
>                 Key: HADOOP-4435
>                 URL: https://issues.apache.org/jira/browse/HADOOP-4435
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: mapred
>            Reporter: dhruba borthakur
>            Assignee: dhruba borthakur
>             Fix For: 0.19.0
>
>
> It would be nice to make the JobTracker UI display the amount of heap memory currently in use. This is similar to the DFS UI that already displays the amount if heap memory used by the NameNode.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.