- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Why not all parameters from ambari cluster not represented by the blueprint json file
- Labels:
-
Apache Ambari
-
Apache Hadoop
Created ‎08-15-2017 08:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Why not all parameters from ambari cluster not represented by the blueprint json file ?
I generated the blueprint json file as the foolwing:
curl -u admin:admin -H "X-Requested-By: ambari" -X GET http://10.23.4.122:8080/api/v1/clusters/HDP26?format=blueprint -o /tmp/HDP01_blueprint.json
but when I access to the ambari GUI we noticed that many parameters not appears in the blueprint json file
example of parameters from HDFS – config that not appears in the blueprint json file
DataNode failed disk tolerance
DataNode maximum Java heap size
DataNode max data transfer threads
Created ‎08-15-2017 10:08 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
These attributes are available in the blueprint.json file:
DataNode failed disk tolerance - Described as
dfs.datanode.failed.volumes.tolerated
DataNode maximum Java heap size - Described as
dtnode_heapsize
DataNode max data transfer threads - Described as
dfs.datanode.max.transfer.threads
I retrieved the full blueprint by using the following cURL statement:
curl -H "X-Requested-By: ambari" -X GET -u admin:admin <URL>:8080/api/v1/clusters/<CLUSTER_NAME>?format=blueprint > out.blueprint
Created ‎08-15-2017 10:08 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
These attributes are available in the blueprint.json file:
DataNode failed disk tolerance - Described as
dfs.datanode.failed.volumes.tolerated
DataNode maximum Java heap size - Described as
dtnode_heapsize
DataNode max data transfer threads - Described as
dfs.datanode.max.transfer.threads
I retrieved the full blueprint by using the following cURL statement:
curl -H "X-Requested-By: ambari" -X GET -u admin:admin <URL>:8080/api/v1/clusters/<CLUSTER_NAME>?format=blueprint > out.blueprint
