Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

how the ambari get the info of HDFS, HBase, eg, NameNode heap size, DataNodes Lives.

avatar
New Member
 
1 ACCEPTED SOLUTION

avatar
Master Mentor

@jack jack

Ambari Makes use of the JMX APIs provided by the individual components to get the Heap details like:

http://$NAMENODE_HOST:50070/jmx?qry=Hadoop:service=NameNode,name=JvmMetrics

.

Similarly HBase memory details are retrieved using the following MBean. http://$HBASE:16010/jmx

Hadoop:service=HBase,name=JvmMetrics

.

View solution in original post

2 REPLIES 2

avatar
Master Mentor

@jack jack

Ambari Makes use of the JMX APIs provided by the individual components to get the Heap details like:

http://$NAMENODE_HOST:50070/jmx?qry=Hadoop:service=NameNode,name=JvmMetrics

.

Similarly HBase memory details are retrieved using the following MBean. http://$HBASE:16010/jmx

Hadoop:service=HBase,name=JvmMetrics

.

avatar
New Member

thanks,where can I get the detail guidance eg, ambari wiki.