Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]

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 to check that all datanode are up by REST API

avatar

we have ambari cluster ( HDP version 2.6.4 )

how to check that all datanode components ( HDFS ) are up by REST API ?

Michael-Bronson
1 ACCEPTED SOLUTION

avatar
Master Mentor

@Michael Bronson
Following API call will tell us how many DataNodes are live.

# curl -H "X-Requested-By: ambari" -u admin:admin -X GET  http://newhwx1.example.com:8080/api/v1/clusters/NewCluster/services/HDFS/components/DATANODE?fields=...

"started_count": Shows the live (running) DataNodes.
"total_count" : Shows how many DataNodes are there in the cluster.


In order to find out the Individual DataNode Status you will need to supply the hostnames where the DataNodes are installed in the following API call.

#  curl -H "X-Requested-By: ambari" -u admin:admin -X GET http://newhwx1.example.com:8080/api/v1/clusters/NewCluster/hosts/newhwx4.example.com/host_components...

(OR other host)

# curl -H "X-Requested-By: ambari" -u admin:admin -X GET http://newhwx1.example.com:8080/api/v1/clusters/NewCluster/hosts/newhwx1.example.com/host_components...

View solution in original post

1 REPLY 1

avatar
Master Mentor

@Michael Bronson
Following API call will tell us how many DataNodes are live.

# curl -H "X-Requested-By: ambari" -u admin:admin -X GET  http://newhwx1.example.com:8080/api/v1/clusters/NewCluster/services/HDFS/components/DATANODE?fields=...

"started_count": Shows the live (running) DataNodes.
"total_count" : Shows how many DataNodes are there in the cluster.


In order to find out the Individual DataNode Status you will need to supply the hostnames where the DataNodes are installed in the following API call.

#  curl -H "X-Requested-By: ambari" -u admin:admin -X GET http://newhwx1.example.com:8080/api/v1/clusters/NewCluster/hosts/newhwx4.example.com/host_components...

(OR other host)

# curl -H "X-Requested-By: ambari" -u admin:admin -X GET http://newhwx1.example.com:8080/api/v1/clusters/NewCluster/hosts/newhwx1.example.com/host_components...