Support Questions

Find answers, ask questions, and share your expertise
Announcements
Now Live: Explore expert insights and technical deep dives on the new Cloudera Community BlogsRead the Announcement

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.