- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Query HDFS JMX metrics for top user
- Labels:
-
Apache Hadoop
Created ‎12-21-2016 11:03 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Is there a way to query HDFS jmx metrics for top users over a period of time. I know nntop does give the details in JMX. But is there a way to query it over a period of time and keep track?
Created ‎12-22-2016 06:52 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yes, it is possible - couple of ways you can do this are:
1. You can do it from JAVA code by using JMX Apis.
2. You can connect to namenode:httpport;/jmx and get a json based response.
3. You can configure a Namenode/Datanode Metrics log file which will dump into a file which you can parse
I am probably missing some more ways :), hope this helps you.
Created ‎12-22-2016 06:52 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yes, it is possible - couple of ways you can do this are:
1. You can do it from JAVA code by using JMX Apis.
2. You can connect to namenode:httpport;/jmx and get a json based response.
3. You can configure a Namenode/Datanode Metrics log file which will dump into a file which you can parse
I am probably missing some more ways :), hope this helps you.
