Skip to content

Instantly share code, notes, and snippets.

@cnauroth
Created June 11, 2015 15:18
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save cnauroth/7ff52e9f80e7d856ddb3 to your computer and use it in GitHub Desktop.
Save cnauroth/7ff52e9f80e7d856ddb3 to your computer and use it in GitHub Desktop.
Hadoop NameNode JMX REST Query for NameNodeStatus
> curl 'http://172.20.11.177:50070/jmx?qry=Hadoop:service=NameNode,name=NameNodeStatus'
{
"beans" : [ {
"name" : "Hadoop:service=NameNode,name=NameNodeStatus",
"modelerType" : "org.apache.hadoop.hdfs.server.namenode.NameNode",
"State" : "active",
"NNRole" : "NameNode",
"HostAndPort" : "localhost:19000",
"SecurityEnabled" : false,
"LastHATransitionTime" : 0
} ]
# "State" is "initializing", "active", "standby" or "stopping".
# "LastHATransitionTime" is the last time of the last flip from standby to active (or vice versa)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment