当前位置:   article > 正文

1、Elasticsearch创建Index

es中prepareindex

阅读文本大概需要3分钟。

Elasticsearch官方为Java提供了三种客户端API:

  • TransportClient:这种方式通过TCP与Elasticsearch服务进行交互。

  • Java Low Level REST Client: 低级别的REST客户端,通过http与集群交互,用户需自己编组请求JSON串,及解析响应JSON串。兼容所有ES版本。

  • Java High Level REST Client: 高级别的REST客户端,基于低级别的REST客户端,增加了编组请求JSON串、解析响应JSON串等相关api。使用的版本需要保持和ES服务端的版本一致,否则会有版本问题。

 

另外Spring框架也提供了spring-data-elasticsearch对Elasticsearch进行CURD操作,但是最底层也是基于Elasticsearch官方提供的API。

 

对于TransportClientAPI官方有如下一段话

https://www.elastic.co/guide/en/elasticsearch/client/java-api/7.0/java-api.html

The TransportClient is deprecated infavour of the Java High Level RESTClient and will be removed in Elasticsearch 8.0. The migration guide describes all thesteps needed to migrate.

 

TransportClient API已经被标识为过期,并在Elasticsearch 8.0.版本后被移除。但是TransportClient API在一些陈年老项目还是使用到的,今天就从TransportClient API开始介绍一下Elasticsearch的几个Java客户端API。

 

1、在pom.xml文件中引入

  1. <dependency>
  2.    <groupId>org.elasticsearch.client</groupId>
  3.    <artifactId>transport</artifactId>
  4.    <version>7.0.0</version>
  5. </dependency>

 

2、构建TransportClient对象

  1. public static TransportClient getTransportClient(){
  2.         TransportClient client = null;
  3.         try {
  4.              client = new PreBuiltTransportClient(Settings.EMPTY);
  5.             //根据主机名获取InetAddress对象
  6.             // InetAddress remAdd=InetAddress.getByName("es.server.com");
  7.             //获取本地InetAddress对象
  8. //            InetAddress locAdd=InetAddress.getLocalHost();
  9.             //创建客户端clients
  10.             InetAddress locAdd = InetAddress.getByName("127.0.0.1"); // ip
  11.             client.addTransportAddress(new TransportAddress(locAdd, 9300));
  12.             System.out.println(client);
  13.             //client.close();
  14.         }catch (Exception e){
  15.             e.printStackTrace();
  16.         }
  17.         return client;
  18.     }

3、document操作,document分为单文档和多文档操作

https://www.elastic.co/guide/en/elasticsearch/client/java-api/7.0/java-docs.html

                           

4、创建Document

Index API 允许我们添加某种类型的JSON文档到特定的index ,并使之可搜索。

使用json字符串创建Index

 

  1. public static IndexResponse getIndexResponseWithString(TransportClient client){
  2.     String json = "{" +
  3.             "\"user\":\"kimchy\"," +
  4.             "\"postDate\":\"2013-01-30\"," +
  5.             "\"message\":\"trying out Elasticsearch\"" +
  6.             "}";
  7.     IndexResponse response = client.prepareIndex
  8.             ("twitter""tweet""1")
  9.             .setSource(json, XContentType.JSON)
  10.             .get();
  11.     return response;
  12. }

使用map创建Index

 

  1. public static IndexResponse getIndexResponseWithMap(TransportClient client) {
  2.     Map<String, Object> json = new HashMap<String, Object>();
  3.     json.put("user","kimchy");
  4.     json.put("postDate",new Date());
  5.     json.put("message","trying out Elasticsearch");
  6.     IndexResponse response = client.prepareIndex
  7.             ("twitter2""tweet2""2")
  8.             .setSource(json, XContentType.JSON)
  9.             .get();
  10.     return response;
  11. }

生成JSON文档的方式如下:

  • 手动使用native byte[] or as a String

  • 使用一个可以自动转换为对应JSON 的Map

  • 使用第三方库如  Jackson序列化 beans

  • 使用内置的  XContentFactory.jsonBuilder()

备注:

1、pom.xml文件 

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.     <modelVersion>4.0.0</modelVersion>
  6.     <groupId>es.transport</groupId>
  7.     <artifactId>es-transport</artifactId>
  8.     <version>1.0-SNAPSHOT</version>
  9.     <dependencies>
  10.         <!--<dependency>
  11.             <groupId>org.elasticsearch.client</groupId>
  12.             <artifactId>transport</artifactId>
  13.             <version>7.0.0</version>
  14.         </dependency>-->
  15.         <dependency>
  16.             <groupId>org.elasticsearch.client</groupId>
  17.             <artifactId>transport</artifactId>
  18.             <version>6.7.0</version>
  19.         </dependency>
  20.         <dependency>
  21.             <groupId>org.apache.logging.log4j</groupId>
  22.             <artifactId>log4j-core</artifactId>
  23.             <version>2.11.2</version>
  24.         </dependency>
  25.     </dependencies>
  26. </project>

2、使用elasticsearch-5.6.13版本elasticsearch

往期精彩

01 漫谈发版哪些事,好课程推荐

02 Linux的常用最危险的命令

03 精讲Spring&nbsp;Boot—入门+进阶+实例

04 优秀的Java程序员必须了解的GC哪些

05 互联网支付系统整体架构详解

关注我

每天进步一点点

很干!在看吗?☟

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/1009106
推荐阅读
相关标签
  

闽ICP备14008679号