Created 12-21-2016 11:03 PM
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
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
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.