Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

API + how to verify data node disk by API

avatar

on ambari GUI by clicking on HDFS --> config --> (we can see the data node folders that actually represented the worker disks)

how to use API in order to capture the number of disks from the blueprint ?

Michael-Bronson
1 ACCEPTED SOLUTION

avatar
Master Mentor

@Michael Bronson

Looks like you want to fetch the details of "dfs.datanode.data.dir" property. In that case you can try using the following call. (please revert back if you are talking about a slightly different property)

Syntax:

# curl -sH "X-Requested-By: ambari" -u admin:admin -X GET "http://$AMBARI_HOSTNAME:8080/api/v1/clusters/$CLUSTER_NAME/configurations/service_config_versions?service_name=HDFS&is_current=true" | grep "\"dfs.datanode.data.dir\"" 



Example:

# curl -sH "X-Requested-By: ambari" -u admin:admin -X GET "http://amb25101.example.com:8080/api/v1/clusters/plain_ambari/configurations/service_config_versions?service_name=HDFS&is_current=true" | grep "\"dfs.datanode.data.dir\"" 


Output:

  "dfs.datanode.data.dir" : "/hadoop/hdfs/data",

.


Please replace the "$AMBARI_HOSTNMAE" and "$CLUSTER_NAME" based on your environment.

.

View solution in original post

1 REPLY 1

avatar
Master Mentor

@Michael Bronson

Looks like you want to fetch the details of "dfs.datanode.data.dir" property. In that case you can try using the following call. (please revert back if you are talking about a slightly different property)

Syntax:

# curl -sH "X-Requested-By: ambari" -u admin:admin -X GET "http://$AMBARI_HOSTNAME:8080/api/v1/clusters/$CLUSTER_NAME/configurations/service_config_versions?service_name=HDFS&is_current=true" | grep "\"dfs.datanode.data.dir\"" 



Example:

# curl -sH "X-Requested-By: ambari" -u admin:admin -X GET "http://amb25101.example.com:8080/api/v1/clusters/plain_ambari/configurations/service_config_versions?service_name=HDFS&is_current=true" | grep "\"dfs.datanode.data.dir\"" 


Output:

  "dfs.datanode.data.dir" : "/hadoop/hdfs/data",

.


Please replace the "$AMBARI_HOSTNMAE" and "$CLUSTER_NAME" based on your environment.

.