溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java中怎么利用elasticsearch實現(xiàn)集群管理功能

發(fā)布時間:2021-08-07 15:11:44 來源:億速云 閱讀:110 作者:Leah 欄目:編程語言

Java中怎么利用elasticsearch實現(xiàn)集群管理功能,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

@Testpublic void test45() throws UnknownHostException{  //1、指定es集群 cluster.name 是固定的key值,my-application是ES集群的名稱  Settings settings = Settings.builder().put("cluster.name", "my-application").build();  //2.創(chuàng)建訪問ES服務器的客戶端  TransportClient client = new PreBuiltTransportClient(settings)      .addTransportAddress(new TransportAddress(InetAddress.getByName("192.168.1.94"), 9300));  //獲取集群信息  ClusterHealthResponse healthResponse = client.admin().cluster().prepareHealth().get();  //獲取集群名稱  String clusterName = healthResponse.getClusterName();  System.out.println(clusterName);  //獲取存放數(shù)據(jù)的那些節(jié)點  int numberOfDataNodes = healthResponse.getNumberOfDataNodes();  System.out.println(numberOfDataNodes);  //獲取節(jié)點的總數(shù)量  int numberOfNodes = healthResponse.getNumberOfNodes();  System.out.println(numberOfNodes);  //獲取集群中一共有多少索引  for(ClusterIndexHealth health:healthResponse.getIndices().values()) {    String index = health.getIndex();//當前索引名稱    int numberOfShards = health.getNumberOfShards();//主分片    int numberOfReplicas = health.getNumberOfReplicas();//副本    ClusterHealthStatus status = health.getStatus();//得到當前的健康狀況    System.out.println(status);//健康-綠色 一般-黃色 不健康-紅色  }}

關于Java中怎么利用elasticsearch實現(xiàn)集群管理功能問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業(yè)資訊頻道了解更多相關知識。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI