0


Elasticsearch(二)--Elasticsearch客户端讲解

一、前言

在上一章我们大致了解了下elasticsearch,虽说上次的内容全是八股文,但是很多东西还是非常有用的,这些哪怕往小说作为面试,往大说是可以帮你很快的理解es是个什么玩意儿,所以还是非常推荐大家去看一下上一章内容。
这一章我们将对es客户端进行学习,在使用ES构建搜索应用时,需要使用客户端与ES进行会话。在开发和调试环节,使用最广泛的客户端要数Kibana,其提供的强大功能足以满足构建索引、验证结果和调试DSL等各种需求。然后呢虽然ES提供了多种编程语言,但是我们本次学习包括后面的学习都将基于java,那么可选的客户端有RestHighLevelClient、Spring Data Elasticsearch和Jest,本章将通过一个搜索需求分别介绍。

二、Kibana客户端简介

Kibana是ELK家族中一个开源、免费的可视化数据搜索和分析平台。借助KIbana,用户不需要编码就可以将ES中分析的结果进行可视化呈现,如以常用的饼图、柱状图和时序图等方式呈现。除了可视化数据分析功能,Kibana还提供了Dev Tools,它是一款可以与ES进行交互式请求的工具,可以借助它进行DSL调试

2.1、Kibana的安装

同上一章的ES的安装,本节这里也不做过多说明。但是需要注意的是,Kibana的版本最好和已经安装的ES保持一致,否则容易产生版本不兼容的问题。所以这里下载的Kibana的版本为7.10.2.
我想提的是,如何在windows中将Kibana安装为服务并且开机自启动,这里呢,需要提到一个软件–Winsw,这个软件大家可以搜一下下载下来,然后打开软件,选择Winsw-x64.exe,有的人可能直接是Winsw.exe,这个大家根据自己的环境选择对应的执行文件就好:
在这里插入图片描述

然后大家将执行文件复制到Kibana的bin目录下:
在这里插入图片描述
接着在同一目录下创建执行文件同名的xml文件,比如我的执行文件叫作Winsw-x64.exe,那么我就需要创建Winsw-x64.xml文件,那么如果有的人执行文件叫作Winsw.exe,那就取名为Winsw.xml:
在这里插入图片描述
然后在xml文件中添加以下内容:

<service><id>kibanaService</id><!-- 服务名 --><name>kibanaService</name><description>kibana</description><!-- 开机启动 --><startmode>Automatic</startmode><!-- 启动文件位置,kibana.bat就是kibana的启动文件 --><executable>%BASE%\kibana.bat</executable><!-- 日志配置 --><logmode>rotate</logmode></service>

创建完后保存文件,然后在bin目录下打开cmd终端,输入Winsw-x64.exe install即可
安装完可以去任务管理器的服务看到:
在这里插入图片描述
然后安装完服务后启动服务即可,接着浏览器输入localhost:5601,运行界面如图所示:
在这里插入图片描述

2.2、在Kibana中搜索文档

在Kibana首页中单击Dev Tool链接
在这里插入图片描述
目前的工具集中包含Console、Search Profile、Grok Debugger和Painless Lab4个工具,它们各自的功能如下表:
工具名称功能Console提供ES REST形式交互的控制台Search Profile可以分析ES响应某一请求的耗时Grok Debugger提供Grokt语言的调试器,联合使用Logstash上传数据时,用作调试分割文本的表达式Painless Lab提供Painless语言的调试器,用户在自定义排序脚本diamante时可以使用
本节主要介绍Console(控制台)的使用,这是在后面的章节中使用最多的工具。控制台中包含3个区域,分别为功能区、请求编辑区和结果反馈区,如图所示:
在这里插入图片描述

功能区提供的主要是一些辅助功能,如请求历史和字体设置等:请求编辑区主要是用户编辑REST请求的地方,为更好地帮助用户进行开发,该区域提供了语法高亮显示、智能提示和自动对齐等功能;结果反馈区主要搭配请求编辑区使用,运行请求编辑区的请求后,在结果反馈区会把ES的响应结果返回,同时,该区域提供了返回码、请求耗时和语法高亮显示等功能。
现在可以把之前学习的索引操作在Kibana中执行了,如在hotel索引中按照title字段搜索"mbw",请求的DSL如下:

GET /hotel/_search
{"query":{"match":{"title":"mbw"}}}

点击运行后,结果反馈区显示搜索结果和之前在Postman中结果是一样的。为方便用户查看数据,结果反馈区已经把搜索结果中的字段和值进行了颜色区分。
在这里插入图片描述

2.3、Java客户端简介

ES和客户端的通信通过HTTP进行,用户可以使用任意语言完成搜索。此外,ES提供了多种编程语言的API,从客户端连接到搜索DSL构建,再到搜索结果的解析,使用这些API可以更好地完成搜索。本节主要介绍Java Api的使用。

2.3.1、Java客户端的搭建

Java客户端分为低级客户端和高级客户端两种。低级客户端兼容所有版本的ES,但是其需要提供JSON字符串,因此这种开发方式比较低效。高级客户端是基于低级客户端开发出来的,屏蔽了底层技术,使用户可以更专注于搜索业务,这是官方推荐的开发方式。本节我们将使用高级客户端–RestHighLevelClient.并且我们后续也只会使用这一种客户端,后面介绍的比如Spring-data等只是介绍一下,并不会着重使用。
为了演示RestHighLevelClient的使用,需要创建一个Spring Boot Web项目。首先我们创建一个父项目,pom文件如下:

<?xml version="1.0" encoding="UTF-8"?><projectxmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><groupId>com.mbw</groupId><artifactId>elaseticSearch-demo-parent</artifactId><version>1.0-SNAPSHOT</version><modules><module>elasticsearch_demo-01</module><module>elasticsearch-demo-02</module></modules><packaging>pom</packaging><properties><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding><maven.compiler.source>1.8</maven.compiler.source><maven.compiler.target>1.8</maven.compiler.target><lombok.version>1.18.20</lombok.version><hutool.version>5.5.8</hutool.version></properties><dependencyManagement><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-dependencies</artifactId><version>2.3.0.RELEASE</version><type>pom</type><scope>import</scope></dependency></dependencies></dependencyManagement><dependencies><dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId><version>${lombok.version}</version></dependency><dependency><groupId>cn.hutool</groupId><artifactId>hutool-all</artifactId><version>${hutool.version}</version></dependency></dependencies></project>

之后在创建一个子项目名为elasticsearch-demo-01,pom文件如下:

<?xml version="1.0" encoding="UTF-8"?><projectxmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><parent><artifactId>elaseticSearch-demo-parent</artifactId><groupId>com.mbw</groupId><version>1.0-SNAPSHOT</version></parent><modelVersion>4.0.0</modelVersion><artifactId>elasticsearch_demo-01</artifactId><properties><maven.compiler.source>8</maven.compiler.source><maven.compiler.target>8</maven.compiler.target></properties><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId></dependency><dependency><groupId>com.alibaba</groupId><artifactId>fastjson</artifactId><version>1.2.56</version></dependency><dependency><groupId>org.elasticsearch.client</groupId><artifactId>elasticsearch-rest-high-level-client</artifactId><version>7.10.2</version></dependency><dependency><groupId>org.elasticsearch</groupId><artifactId>elasticsearch</artifactId><version>7.10.2</version></dependency></dependencies></project>

之后在application.yaml文件中配置ES的连接信息如下:

elasticsearch:rest:hosts: 127.0.0.1:9200username: elastic
    password:123456

有人可能会好奇,这个username和password是什么时候设置的,安装过程中好像从来没涉及到,那么下面教大家如何设置es的用户名和密码:
1,需要在es的配置文件中开启x-pack验证, 修改config目录下面的elasticsearch.yml文件,在里面添加如下内容,保存后并重启es.

xpack.security.enabled: true
xpack.license.self_generated.type: basic
xpack.security.transport.ssl.enabled: true

2,进入es的安装根目录bin下,E:\software\es\elasticsearch-7.10.2\bin

执行设置用户名和密码的命令,命令如下:

elasticsearch-setup-passwords interactive

这里需要为多个用户分别设置密码,elastic, kibana, logstash_system,beats_system,用户名默认为各个组件名,我们只需输入密码。

Enter password for[elastic]: 
Reenter password for[elastic]: 
Enter password for[kibana]: 
Reenter password for[kibana]: 
Enter password for[logstash_system]: 
Reenter password for[logstash_system]: 
Enter password for[beats_system]: 
Reenter password for[beats_system]: 
Changed password for user [kibana]
Changed password for user [logstash_system]
Changed password for user [beats_system]
Changed password for user [elastic]

3,在kibana的配置目录confg将kibana.yml添加es的用户名和密码:

elasticsearch.username: "elastic"
elasticsearch.password: "xxxx"

4,重启即可。
5,修改密码时,将第一步配置删除,然后重启es,将.security-7的索引删除即可。
然后重新1-4步骤。
那么回到项目的yaml文件,hosts、username和password需要分别填写协调节点服务地址(IP地址+端口号)、用户名、密码。当有多个协调节点时,可以设置hosts值为多个协调节点服务地址,中间用逗号分隔。
为生成RestHighLevelClient的实例,这里使用EsClient类注册Bean到Spring Boot的方式。RestHighLevelClient的构造方法接受一个RestClientBuilder实例,而调用RestClient.builder()方法可以生成RestClientBuilder实例。RestClient.builder()方法需要传递一个HttpHost对象或者HttpHost数组。
HttpHost是Apache lib 库中对HTTP请求进行封装的一种方法,其构造方法接收主机地址、端口和请求协议3个参数。当有多个协调节点时,需要读取配置文件的参数构造HttpHost数组。
下面的代码定义了类EsClient,方法initSimpleClient()返回一个RestHighLevelClient并注册到Spring Boot中。

packagecom.mbw.client;importjava.util.Arrays;importorg.apache.http.HttpHost;importorg.apache.http.auth.AuthScope;importorg.apache.http.auth.UsernamePasswordCredentials;importorg.apache.http.impl.client.BasicCredentialsProvider;importorg.elasticsearch.client.RestClient;importorg.elasticsearch.client.RestHighLevelClient;importorg.springframework.beans.factory.annotation.Value;importorg.springframework.context.annotation.Bean;importorg.springframework.stereotype.Component;@ComponentpublicclassEsClient{@Value("${elasticsearch.rest.hosts}")privateString hosts;//配置高级客户端@Bean(name ="client")publicRestHighLevelClientinitSimpleClient(){HttpHost[] httpHosts =Arrays.stream(hosts.split(",")).map(
                host ->{String[] hostParts = host.split(":");String hostName = hostParts[0];int port =Integer.parseInt(hostParts[1]);returnnewHttpHost(hostName, port,HttpHost.DEFAULT_SCHEME_NAME);}).toArray(HttpHost[]::new);//返回客户端returnnewRestHighLevelClient(RestClient.builder(httpHosts)));}}

这样就创建了高级的REST客户端。
但是在生产环境下,ES一般都会开启安全验证功能,由于ES Java客户端使用的也是HTTP标准规范中的认证机制,因此在建立客户端和服务端的连接时需要一组凭证用于鉴定用户身份,而这组凭证就是用户名和密码。
CredentialsProvider类是一个凭证接口,通过CredentialsProvider.setCredentials()方法可以设置凭证。这里我们使用它的一个实现类BasicCredentialsProvider,UsernamePasswordCredentials类可以用明文的形式来表示认证凭证,通过CredentialsProvider.setCredentials()方法设置它的实例,就可以完成凭证的构建。
当使用RestClient.builder()方法构建完RestClientBuilder实例后,需要调用RestClientBuilder.setHttpClientConfigCallback()方法完成认证。RestClientBuilder.setHttpClientConfigCallback()方法需要传入一个RestClientBuilder.HttpClientConfigCallback实例,构建完该实例后,可以在该实例的customizeHttpClient()方法中传输之前创建的凭证。下面是带验证的客户端的创建过程:

packagecom.mbw.client;importjava.util.Arrays;importorg.apache.http.HttpHost;importorg.apache.http.auth.AuthScope;importorg.apache.http.auth.UsernamePasswordCredentials;importorg.apache.http.impl.client.BasicCredentialsProvider;importorg.elasticsearch.client.RestClient;importorg.elasticsearch.client.RestHighLevelClient;importorg.springframework.beans.factory.annotation.Value;importorg.springframework.context.annotation.Bean;importorg.springframework.stereotype.Component;@ComponentpublicclassEsClient{@Value("${elasticsearch.rest.hosts}")privateString hosts;@Value("${elasticsearch.rest.username}")privateString username;@Value("${elasticsearch.rest.password}")privateString password;//配置高级客户端@Bean(name ="client")publicRestHighLevelClientinitSimpleClient(){HttpHost[] httpHosts =Arrays.stream(hosts.split(",")).map(
                host ->{String[] hostParts = host.split(":");String hostName = hostParts[0];int port =Integer.parseInt(hostParts[1]);returnnewHttpHost(hostName, port,HttpHost.DEFAULT_SCHEME_NAME);}).toArray(HttpHost[]::new);//生成凭证BasicCredentialsProvider credentialsProvider =newBasicCredentialsProvider();
        credentialsProvider.setCredentials(AuthScope.ANY,newUsernamePasswordCredentials(username, password));//参数2是明文凭证//返回带验证的客户端returnnewRestHighLevelClient(RestClient.builder(httpHosts).setHttpClientConfigCallback(httpAsyncClientBuilder ->{
            httpAsyncClientBuilder.disableAuthCaching();return httpAsyncClientBuilder.setDefaultCredentialsProvider(credentialsProvider);}));}}

2.3.2、使用Java客户端搜索文档
就像在介绍Kibana一样,我们还是构建一个请求来学习搜索功能。使用Java客户端 API构造一个搜索请求,该请求在hotel索引中按照title字段搜索"再来"。
为方便结果展示,我们首先封装一个酒店的POJO类:

packagecom.mbw.pojo;importlombok.Data;@DatapublicclassHotel{privateString id;//对应文档_idprivateString index;//对应索引名称privateFloat score;//对应文档得分privateString title;//对应索引中的titleprivateString city;//对应索引中的cityprivateDouble price;//对应索引中的price}

接着在Service中调用ES的搜索服务并获取搜索结果后,需要遍历搜索结果并构成Hotel实例,然后将Hotel对应的字段填充为搜索结果的数据。
使用Rest搜索时,首先需要创建一个searchSourceBuilder实例,然后创建查询实例并将其传送给searchSourceBuilder,此处创建的查询实例相当于构建DSL,接着创建SearchRequest实例,最后将SearchSourceBuilder传送给SearchRequest。
请求构建完成后,需要使用CLient发送请求获取结果。我们知道,在使用curl命令和Kibana时,ES返回的JSON搜索结果是封装在hits中的。同样,Java API获取的返回结果是封装在SearchHits的,遍历SearchHits,通过其中的每一个元素可以获取搜索命中的每个文档的信息,诸如文档_id、得分和文档内容等。在Service中完整的搜索代码如下:

packagecom.mbw.service;importjava.io.IOException;importjava.util.ArrayList;importjava.util.List;importjava.util.Map;importorg.elasticsearch.action.search.SearchRequest;importorg.elasticsearch.action.search.SearchResponse;importorg.elasticsearch.client.RequestOptions;importorg.elasticsearch.client.RestHighLevelClient;importorg.elasticsearch.index.query.QueryBuilders;importorg.elasticsearch.rest.RestStatus;importorg.elasticsearch.search.SearchException;importorg.elasticsearch.search.SearchHit;importorg.elasticsearch.search.SearchHits;importorg.elasticsearch.search.builder.SearchSourceBuilder;importorg.springframework.beans.factory.annotation.Autowired;importorg.springframework.stereotype.Service;importcom.mbw.pojo.Hotel;importlombok.extern.slf4j.Slf4j;@Service@Slf4jpublicclassEsService{@AutowiredprivateRestHighLevelClient client;publicList<Hotel>getHotelFromTitle(String keyword)throwsIOException{SearchRequest searchRequest =newSearchRequest("hotel");//客户端请求SearchSourceBuilder searchSourceBuilder =newSearchSourceBuilder();//构建query
        searchSourceBuilder.query(QueryBuilders.matchQuery("title", keyword));
        searchRequest.source(searchSourceBuilder);ArrayList<Hotel> resultList =newArrayList<>();SearchResponse searchResponse = client.search(searchRequest,RequestOptions.DEFAULT);RestStatus status = searchResponse.status();if(status !=RestStatus.OK){returnnull;}SearchHits searchHits = searchResponse.getHits();for(SearchHit searchHit : searchHits){Hotel hotel =newHotel();
            hotel.setId(searchHit.getId());//文档_id
            hotel.setIndex(searchHit.getIndex());//索引名称
            hotel.setScore(searchHit.getScore());//文档得分//转换为MapMap<String,Object> dataMap = searchHit.getSourceAsMap();
            hotel.setTitle((String) dataMap.get("title"));
            hotel.setCity((String) dataMap.get("city"));
            hotel.setPrice(Double.valueOf((String) dataMap.get("price")));
            resultList.add(hotel);}return resultList;}}

下面是controller实现部分,我这边用结果类封装了下,大家也可以随意,例如直接返回String类型的结果也是可以的。

packagecom.mbw.controller;importjava.io.IOException;importjava.util.List;importorg.springframework.beans.factory.annotation.Autowired;importorg.springframework.web.bind.annotation.PostMapping;importorg.springframework.web.bind.annotation.RestController;importcom.mbw.pojo.Hotel;importcom.mbw.result.FoundationResponse;importcom.mbw.service.EsService;importcn.hutool.core.collection.CollectionUtil;importlombok.extern.slf4j.Slf4j;@RestController@Slf4jpublicclassTestController{@AutowiredprivateEsService esService;@PostMapping("/test")publicFoundationResponse<String>getResult(String keyword){try{List<Hotel> hotelList = esService.getHotelFromTitle(keyword);if(CollectionUtil.isNotEmpty(hotelList)){returnFoundationResponse.success(hotelList.toString());}else{returnFoundationResponse.success("no data");}}catch(IOException e){
            log.warn("搜索发生异常,原因为:{}", e.getMessage());returnFoundationResponse.error(100, e.getMessage());}catch(Exception e){
            log.error("服务发生异常,原因为:{}", e.getMessage());returnFoundationResponse.error(100, e.getMessage());}}}

现在启动程序在postman输入localhost:9090/test
在这里插入图片描述

2.3.2、SpringBoot客户端简介

Spring Data Elasticsearch是Spring Boot套件中的一个组件,在Spring Boot中连接ES可以使用Spring Data Elasticsearch.Spring Data Elasticsearch是Spring Data项目的一部分,该项目致力于提供一致的基于Spring的数据查询和存储编程模型。Spring Data Elasticsearch封装了创建客户端的逻辑并与服务端保持长连接,让我们不必关注于网络连接问题。并且,通过对Repository接口的自动实现,Spring Data Elasticsearch可以直接通过方法名的语义实现查询功能,如常见的findBy+字段名+操作。此外,Spring Data Elasticsearch还具有OR-Mappring功能,即查询到数据后,可以将数据直接封装到自定义的POJO中,方便后续对数据进行加工处理。
但是由于Spring Data Elasticsearch底层采用es官方的TransportClient,es官方计划放弃TransportClient,所以我们仍然包括后续学习推荐使用HighLevelClient.这里也不做过多代码展示,感兴趣的小伙伴自行了解。

2.3.3、Jest客户端

JestClient是一款基于HTTP实现的ES客户端,在RestHighLevelClient出现之前,它填补了ES缺少HTTP REST接口客户端的空白。JestClient具有一定的ES服务端版本兼容性,支持数据的同步和异步操作,同时,它也提供了索引时和搜索结果的POJO映射机制,即OR-Mapping功能。但是目前主键被RestHighLevelClient取代,这里也不做过多讲解。


本文转载自: https://blog.csdn.net/qq_44754515/article/details/128665280
版权归原作者 雨~旋律 所有, 如有侵权,请联系我们删除。

“Elasticsearch(二)--Elasticsearch客户端讲解”的评论:

还没有评论