java调用ambari api示例

以查询ambari当前用户列表为例:
import cn.chinaunicom.common.constant.Constant;
import com.alibaba.fastjson.JSONObject;
import com.sun.javafx.fxml.builder.URLBuilder;
import org.apache.http.Header;
import org.apache.http.HttpEntity;
import org.apache.http.NameValuePair;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.config.RequestConfig;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.client.utils.URIBuilder;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;

import javax.xml.bind.DatatypeConverter;
import java.io.IOException;
import java.net.URISyntaxException;
import java.util.HashMap;
import java.util.Map;

public class test {

    /**
     * http get请求
     */
    public static String doGet(String restUrl, Map<String, String> params) throws ClientProtocolException, IOException {

        CloseableHttpClient httpClient = null;
        CloseableHttpResponse response = null;
        String result = "";
        try {
            // 通过址默认配置创建一个httpClient实例
            httpClient = HttpClients.createDefault();

            URIBuilder uriBuilder = new URIBuilder(restUrl);
            for (Map.Entry<String, String> entry : params.entrySet()) {
                uriBuilder.setParameter(entry.getKey(), entry.getValue());
            }

            // 创建httpGet远程连接实例
            HttpGet httpGet = new HttpGet(restUrl);

            String encoding = null;  //username  password 自行修改  中间":"不可少
            String username = "xxx";
            String password = "xxx";
            encoding = DatatypeConverter.printBase64Binary((username + ":" + password).getBytes("UTF-8"));
            httpGet.setHeader("Authorization", "Basic " + encoding);

            // 设置配置请求参数
            RequestConfig requestConfig = RequestConfig.custom().setConnectTimeout(35000)// 连接主机服务超时时间
                    .setConnectionRequestTimeout(35000)// 请求超时时间
                    .setSocketTimeout(60000)// 数据读取超时时间
                    .build();

            // 为httpGet实例设置配置
            httpGet.setConfig(requestConfig);
            // 执行get请求得到返回对象
            response = httpClient.execute(httpGet);
            // 通过返回对象获取返回数据
            HttpEntity entity = response.getEntity();
            // 通过EntityUtils中的toString方法将结果转换为字符串
            result = EntityUtils.toString(entity);
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } catch (URISyntaxException e) {
            e.printStackTrace();
        } finally {
            // 关闭资源
            if (null != response) {
                try {
                    response.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            if (null != httpClient) {
                try {
                    httpClient.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
        return result;
    }

    /**
     * 查询用户列表
     */
    public static String ambari_users() throws IOException {
        String url = "http://xx.xx.xx.xx:8080/api/v1/users";
        Map<String, String> params = new HashMap<>();
        params.put("fields", "Users/user_name");
        params.put("sortBy", "Users/user_name.asc");
        params.put("page_size", "10");

        return doGet(url, params);

    }

    public static void main(String[] args) throws IOException {
        System.out.println(ambari_users());
    }

}

欢迎关注“程序杂货铺”公众号,里面有精彩内容,欢迎大家收看^_^

 

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
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、付费专栏及课程。

余额充值