AMBARI Blueprint 使用文档

 

 

Introduction

Ambari Blueprints are a declarative definition of a cluster. With a Blueprint, you specify a Stack, the Component layout and the Configurations to materialize a Hadoop cluster instance (via a REST API) without having to use the Ambari Cluster Install Wizard.

https://cwiki.apache.org/confluence/display/AMBARI/Blueprints

 

 

 

Summary

As of Ambari 2.0, Blueprints are able to deploy the following components with HA:

  •  HDFS NameNode HA
  • YARN ResourceManager HA
  • HBase RegionServers HA

 

As of Ambari 2.1, Blueprints are able to deploy the following components with HA:


This functionality currently requires providing fine-grained configurations. This document provides examples.

https://cwiki.apache.org/confluence/display/AMBARI/Blueprint+Support+for+HA+Clusters

转载于:https://www.cnblogs.com/felixzh/p/10682343.html

Ambari API 是用于管理和监控 Hadoop 集群的 RESTful API,可以使用这个 API 对集群进行各种操作,例如添加、删除和修改集群服务、配置和主机等。 下面是使用 Ambari API 查询集群服务的一个简单示例: 1. 首先,需要确定 Ambari Server 的 URL 和端口号。通常情况下,URL 格式为 `http://<ambari-server-host>:<port>`。 2. 接着,需要确定需要查询的集群名称和服务名称。可以通过浏览器登录 Ambari Web UI,在 Dashboard 页面上找到需要查询的服务并记录下其名称。 3. 在浏览器中输入以下 URL,即可查询指定服务的状态信息: ``` http://<ambari-server-host>:<port>/api/v1/clusters/<cluster-name>/services/<service-name> ``` 其中,`<ambari-server-host>` 是 Ambari Server 的主机名或 IP 地址,`<port>` 是 Ambari Server 的端口号,`<cluster-name>` 是要查询的集群名称,`<service-name>` 是要查询的服务名称。 例如,查询名为 `hdfs` 的服务状态,可以使用以下 URL: ``` http://localhost:8080/api/v1/clusters/mycluster/services/HDFS ``` 4. 发送 GET 请求后,Ambari API 将返回 JSON 格式的服务状态信息。可以使用工具对返回的 JSON 数据进行解析和处理,例如使用 Python 的 `json` 模块进行解析。 以下是一个 Python 示例代码,可以获取 `hdfs` 服务的状态信息并打印出来: ```python import requests import json url = "http://localhost:8080/api/v1/clusters/mycluster/services/HDFS" headers = { "X-Requested-By": "ambari", "Accept": "application/json" } response = requests.get(url, headers=headers) if response.status_code == 200: data = json.loads(response.text) print(json.dumps(data, indent=4)) else: print("Error:", response.status_code, response.reason) ``` 运行该脚本后,将会输出 `hdfs` 服务的状态信息。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值