当前位置:   article > 正文

ES数据存储搜索引擎入门到整合Springboot一章直达_es存储

es存储

前言

学习一门语言,我们从熟悉其语法开始,慢慢深入动手实践,并开始将其使用到对应的场景上,当我们遇到相应的问题,能够联想到使用该技术,并能够信手拈来的时候,才是我们真正掌握了一门技术或者语言的时候。学习的时候可以和其他学过的知识点相关联,如ES可以与MYSQL特性相关联,就像编程入门从C开始一样,是介于C的语法基础,触类旁通其他语言,下面介绍的是ES的使用场景,语法,和对应的操作过程。

一. ES数据库说明

es数据库是一个搜索引擎,既可以存储数据,又可以将数据进行细粒度划分,切分为多个索引条件,并支持全文检索,是一个分布式概念的数据存储搜索引擎。基于JAVA和Lucence创建。

二. ES的常见概念

集群,节点,索引,类型,映射,文档,段域,反向索引,DSL索引

  1. 集群: 多个服务构建成一个集群
  2. 节点: 一个集群上的节点,指代集群上的一个服务
  3. 索引: index ,是es的一个基本概念,依靠索引可以进行数据的检索,相当于myql的数据库(database)的量级
  4. 映射: 在存储数据的时候规定映射规则可以限制存储进es的数据,相当于mysql的表结构。
  5. 文档:文档是es存储的基本单位,相当于mysql的行的概念
  6. 段域:相当于mysql的列
  7. 反向索引:相当于mysql正向查询
  8. DSL索引:依靠es查询规则而进行的查询,相当于mysql的sql查询 
ES关系型数据库
索引(index)数据库(DataBase)
类型(Type)表(Table)
映射(Mapping)表结构(Schema)
文档(Document)行(ROw)
字段(Field)列(Column)
反向索引正向索引
DSL查询SQL查询

 三. ES的应用场景

① 监控。对日志类数据进行存储、分析、可视化。对日志数据,ES给出了ELK的解决方案。其中logstash采集日志,ES进行复杂的数据分析,转换你的日志,并将他们存储在es中,kibana进行可视化展示。

② 线上商城系统,用户需要搜素购物系统网站上的商品信息。es可以存储所有的商品信息和一些库存信息,用户通过搜索引擎可以查询到自己需要的商品信息。

③ json文档数据库。用于存放java格式的文档。

④ 提供全文搜素并高亮关键字
 

四. ES的使用原理

存储和查询原理

lucence的存储和查询过程主要是:

 存储过程:

① 存储文档经过词法分析得到一系列的词(Term)
② 通过一系列词来创建形成词典和反向索引表
③ 将索引进行存储并写入硬盘。
查询过程:

① 用户输入查询语句。
② 对查询语句经过词法分析得到一系列词(Term) 。
③ 通过语法分析得到一个查询树。
④ 通过索引存储将索引读入到内存。
⑤ 利用查询树搜索索引,从而得到每个词(Term) 的文档链表,对文档链表进行交、差、并得到结果文档。
⑥ 将搜索到的结果文档对查询的相关性进行排序。
⑦ 返回查询结果给用户。

  

 

ES写数据分别是写入一个新的文档和在原有文档的基础上进行数据的追加(覆盖原有的文档)。两者基本上没有什么区别,后者是把原来的文档进行删除,再重新写入。

ES写数据流程:

(1)  客户端选择一个ES节点发送写请求,ES节点接收请求变为协调节点。

(2)  协调节点判断写请求中如果没有指定文档id,则自动生成一个doc_id。协调节点对doc_id进行哈希取值,判断出文档应存储在哪个切片中。协调节点找到存储切片的对应节点位置,将请求转发给对应的node节点。

(3)  Node节点的primary shard处理请求,并将数据同步到replica shard

(4)  协调节点发现所有的primary shard和所有的replica shard都处理完之后,就返回结果给客户端。
 

五. ES存储和查询数据

 1.存储megacorp公司员工的信息,包含员工first_name,last_name,age,interests
  1. #存储员工信息
  2. PUT /megacorp/employee/1
  3. {
  4. "frist_name":"sam",
  5. "last_name":"tom",
  6. "interests":["swmming","basketball","music"],
  7. "about":"I love coding",
  8. "age":25
  9. }
  10. PUT /megacorp/employee/2
  11. {
  12. "frist_name":"Smith",
  13. "last_name":"Math",
  14. "interests":["basketball","music"],
  15. "about":"I love coding",
  16. "age":32
  17. }
  18. PUT /megacorp/employee/3
  19. {
  20. "frist_name":"Jone",
  21. "last_name":"KeByt",
  22. "interests":["music"],
  23. "about":"I love coding",
  24. "age":40
  25. }

megacorp为索引,代表公司(数据库),employee代表类型,表示员工表,数字1,2,3代表员工1,2,3

分词存储员工信息,使用mapping映射存储结构,同时设置字段的分词细粒度

分词:例如:司马玉龙,可以分解为司马,玉龙,司,马,玉,龙。查询的时候如果条件在分词里面,可以查询到该文档,比如电商平台的搜索依靠的也是分词搜索商品,直接将类似(包含关键字)的商品带出。

  1. #ik_max_word 代表最大分词细粒度分解字段
  2. POST /employees/slae/
  3. {
  4. "mappings":{
  5. "perperties":{
  6. "frist_name":{
  7. "type": "text"
  8. },
  9. "last_name":{
  10. "type": "text"
  11. },
  12. "full_name":{
  13. "type": "text",
  14. "analyzer":"ik_max_word",
  15. "search_analyzer":"ik_max_word"
  16. },
  17. "address":{
  18. "type":"text",
  19. "analyzer":"ik_max_word",
  20. "search_analyzer":"ik_max_word"
  21. },
  22. "sex":{
  23. "type":"text"
  24. },
  25. "salay":{
  26. "type":"text"
  27. }
  28. }
  29. }
  30. }
2.查询员工信息

(1)查询所有员工信息

GET /megacorp/employee/_search

结果,将搜索的结果集存放在hits里面

 (2)条件查询

依靠员工last_name查询

  1. #条件查询
  2. GET /megacorp/employee/_search?q=last_name:tom

 

 依靠员工frist_name查询

  1. GET /megacorp/employee/_search
  2. {
  3. "query":{
  4. "match": {
  5. "frist_name": "sam"
  6. }
  7. }
  8. }

过滤查询,先执行filter的条件,在执行query里面的条件

filter过滤可以有 range(范围),exists(存在),ids(文档id),term,terms(字段) 过滤,下面举例range,其他条件类似。

  1. #filter过滤,相当于mysql 大于小于范围查询
  2. GET /megacorp/employee/_search
  3. {
  4. "query":{
  5. "bool":{
  6. "must": {
  7. "match":
  8. {
  9. "frist_name":"sam"
  10. }
  11. },
  12. "filter": [
  13. {
  14. "range": {
  15. "age": {
  16. "gte": 20,
  17. "lte": 40
  18. }
  19. }
  20. }
  21. ]
  22. }
  23. }
  24. }

term(分析)搜索

类似于myql的group by 分组查询

 前提是查询的字段具有分词结构,即设置了analyzer

  1. GET /megacorp/employee/_search
  2. {
  3. "aggs":{
  4. "all_address":{
  5. "terms":{
  6. "field":"address"
  7. }
  8. }
  9. }
  10. }

 在没有分词结构的基础上查询出现,文本字段不是分析排序结构,所有操作不能依靠默认进行。

  1. GET /megacorp/employee/_search
  2. {
  3. "aggs":{
  4. "all_address":{
  5. "terms":{
  6. "field":"frist_name"
  7. }
  8. }
  9. }
  10. }

 

短语搜索

  1. GET /megacorp/employee/_search
  2. {
  3. "query":{
  4. "match_phrase": {
  5. "frist_name": "smith"
  6. }
  7. }
  8. }

高亮搜索

  1. GET /megacorp/employee/_search
  2. {
  3. "query":{
  4. "match_phrase": {
  5. "frist_name": "smith"
  6. }
  7. },
  8. "highlight":{
  9. "fields": {
  10. "frist_name": {}
  11. }
  12. }
  13. }

 

 (3)深入-高级搜索

结构搜索

精确搜索

使用_bulk 一次性插入多条数据

  1. POST /my_store/products/_bulk
  2. { "index": { "_id": 1 }}
  3. { "price" : 10, "productID" : "XHDK-A-1293-#fJ3" }
  4. { "index": { "_id": 2 }}
  5. { "price" : 20, "productID" : "KDKE-B-9947-#kL5" }
  6. { "index": { "_id": 3 }}
  7. { "price" : 30, "productID" : "JODL-X-1937-#pV7" }
  8. { "index": { "_id": 4 }}
  9. { "price" : 30, "productID" : "QQPX-R-3956-#aD8" }

 term精确搜索

  1. GET /my_store/products/_search
  2. {
  3. "query" : {
  4. "constant_score" : {
  5. "filter" : {
  6. "term" : {
  7. "price" : 20
  8. }
  9. }
  10. }
  11. }
  12. }

 term为简单的精准查询,就像mysql中的sql

select * from products where price = 20

constant_score的意思是不评分计算查询,将term转换成filter过滤。

组合过滤器-bool过滤器

结构

  1. GET /my_store/products/_search
  2. {
  3. "query":{
  4. "bool": {
  5. "should": [
  6. {}
  7. ],
  8. "must": [
  9. {}
  10. ],
  11. "must_not": [
  12. {}
  13. ]
  14. }
  15. }
  16. }

 should:与myql的OR等价。

must:与mysql的AND等价。

must_not:与mysql的NOT等价。

例:查询价格在10~20的文档

mysql:select * from products where price >= 10 and pirce<=20 

  1. GET /my_store/products/_search
  2. {
  3. "query":{
  4. "bool": {
  5. "should": [
  6. {
  7. "constant_score": {
  8. "filter": {
  9. "range": {
  10. "price": {
  11. "gte": 10,
  12. "lte": 20
  13. }
  14. }
  15. }
  16. }
  17. }
  18. ]
  19. }
  20. }
  21. }

 嵌套bool

查询sql 

  1. SELECT document
  2. FROM products
  3. WHERE productID = "KDKE-B-9947-#kL5"
  4. OR ( productID = "JODL-X-1937-#pV7"
  5. AND price = 30 )

 转成DSL

  1. {
  2. "query":{
  3. "constant_score": {
  4. "filter": {
  5. "bool": {
  6. "should":[
  7. {
  8. "term":{
  9. "productID":"KDKE-B-9947-#kL5"
  10. }
  11. },
  12. {
  13. "bool":{
  14. "must":[
  15. {
  16. "term":
  17. {
  18. "productID":"JODL-X-1937-#pV7"
  19. }
  20. },
  21. {
  22. "term":
  23. {
  24. "price":30
  25. }
  26. }
  27. ]
  28. }
  29. }
  30. ]
  31. }
  32. },
  33. "boost": 1.2
  34. }
  35. }
  36. }

多个精确搜索

使用terms多条件精准查询

  1. GET /my_store/products/_search
  2. {
  3. "query":{
  4. "constant_score": {
  5. "filter": {
  6. "terms": {
  7. "price": [20,30]
  8. }
  9. },
  10. "boost": 1.2
  11. }
  12. }
  13. }

处理空值NULL

  1. POST /my_index/posts/_bulk
  2. { "index": { "_id": "1" }}
  3. { "tags" : ["search"] }
  4. { "index": { "_id": "2" }}
  5. { "tags" : ["search", "open_source"] }
  6. { "index": { "_id": "3" }}
  7. { "other_field" : "some data" }
  8. { "index": { "_id": "4" }}
  9. { "tags" : null }
  10. { "index": { "_id": "5" }}
  11. { "tags" : ["search", null] }

mysql语句

  1. SELECT tags
  2. FROM posts
  3. WHERE tags IS NOT NULL

 ES-DSL,使用exists判断

  1. GET /my_index/posts/_search
  2. {
  3. "query" : {
  4. "constant_score" : {
  5. "filter" : {
  6. "exists" : { "field" : "tags" }
  7. }
  8. }
  9. }
  10. }

match搜索

 match搜索本质是多个term搜索的结果集,多个term搜索之后合并,如果有分词,则返回有分词的结果,没有分词就返回直接查询,match是匹配查询,即全文中有没有匹配这个单词的,有匹配的带出。

  1. GET /employees/slae/_search
  2. {
  3. "query":{
  4. "match": {
  5. "full_name": "lisisi"
  6. }
  7. }
  8. }
  1. POST /my_index/my_type/_bulk
  2. { "index": { "_id": 1 }}
  3. { "title": "The quick brown fox" }
  4. { "index": { "_id": 2 }}
  5. { "title": "The quick brown fox jumps over the lazy dog" }
  6. { "index": { "_id": 3 }}
  7. { "title": "The quick brown fox jumps over the quick dog" }
  8. { "index": { "_id": 4 }}
  9. { "title": "Brown fox brown dog" }

 单个单词匹配

  1. GET /my_index/my_type/_search
  2. {
  3. "query": {
  4. "match": {
  5. "title": "QUICK!"
  6. }
  7. }
  8. }

组合查询

  1. GET /my_index/my_type/_search
  2. {
  3. "query": {
  4. "bool": {
  5. "must": { "match": { "title": "quick" }},
  6. "must_not": { "match": { "title": "lazy" }},
  7. "should": [
  8. { "match": { "title": "brown" }},
  9. { "match": { "title": "dog" }}
  10. ]
  11. }
  12. }
  13. }

3.删除员工信息
  1. #删除员工1
  2. DELETE /megacorp/employee/1
4.修改员工信息
  1. #修改员工1的信息
  2. PUT /megacorp/employee/1
  3. {
  4. "frist_name":"smith",
  5. "last_name":"ttm",
  6. "interests":["swmming","basketball","music"],
  7. "about":"I love coding",
  8. "age":25
  9. }

 语法介绍到这里,篇幅太长,可以参考https://www.elastic.co/guide/cn/elasticsearch/guide/

六. ES整合Springboot

 1.引入依赖

Springboot版本2.5,引入2.7es

  1. <dependencies>
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter</artifactId>
  5. </dependency>
  6. <dependency>
  7. <groupId>com.jcraft</groupId>
  8. <artifactId>jsch</artifactId>
  9. <version>0.1.55</version>
  10. </dependency>
  11. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web -->
  12. <dependency>
  13. <groupId>org.springframework.boot</groupId>
  14. <artifactId>spring-boot-starter-web</artifactId>
  15. </dependency>
  16. <!-- https://mvnrepository.com/artifact/org.elasticsearch.client/elasticsearch-rest-high-level-client -->
  17. <dependency>
  18. <groupId>org.elasticsearch.client</groupId>
  19. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  20. <!-- <version>7.15.0</version>-->
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  25. <!-- <version>3.0.2</version>-->
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-devtools</artifactId>
  30. <scope>runtime</scope>
  31. <optional>true</optional>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.projectlombok</groupId>
  35. <artifactId>lombok</artifactId>
  36. <optional>true</optional>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-test</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. <!--rabbitmq-->
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-amqp</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-web</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>io.netty</groupId>
  54. <artifactId>netty-all</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-websocket</artifactId>
  59. </dependency>
  60. </dependencies>
2.创建RestHightClient配置
  1. @Configuration
  2. public class RestHighClient extends AbstractElasticsearchConfiguration {
  3. @Bean
  4. @ConditionalOnMissingBean
  5. @Override
  6. public RestHighLevelClient elasticsearchClient() {
  7. final ClientConfiguration clientConfiguration = ClientConfiguration
  8. .builder()
  9. .connectedTo("192.168.219.137:9200")
  10. .build();
  11. return RestClients.create(clientConfiguration).rest();
  12. }
  13. }
3.创建实体类
  1. @Data
  2. @AllArgsConstructor
  3. @NoArgsConstructor
  4. @Document(indexName = "teacher",createIndex = true)
  5. public class Teacher {
  6. @Id
  7. @Field(store = true,type = FieldType.Keyword)
  8. private String id;
  9. @Field(store = true,type = FieldType.Text)
  10. private String teacherName;
  11. @Field(store = true,type = FieldType.Text)
  12. private String email;
  13. @Field(store = true,type = FieldType.Text,analyzer = "ik_max_word")
  14. private String address;
  15. @Field(store = true,type = FieldType.Text)
  16. private String phone;
  17. }

@Document表示创建实体类的同时创建ES文档,并将实体类的字段都当成是ES中的字段,

@Field中可以规定字段的类型和是否进行分词

4.创建ES映射仓库
  1. @Component
  2. public interface EsTeacherMapper extends ElasticsearchRepository<Teacher,String> {
  3. }

接口继承ElasticsearchReposity接口,接口里面集成了增删改查的方法,这里的用法很便捷,非常类似MybatisPlus的用法,用过MybatisPlus的小伙伴应该很容易上手。

5.调用接口实现操作
  1. @SpringBootTest
  2. class ElasticsearchApplicationTests {
  3. @Resource
  4. RestHighClient restHightClient;
  5. @Autowired
  6. EsTeacherMapper teacherMapper;
  7. @Test
  8. public void PutData(){
  9. Teacher teacher = new Teacher();
  10. teacher.setId("A00003");
  11. teacher.setTeacherName("陈平安");
  12. teacher.setPhone("34546565265");
  13. teacher.setEmail("2435454656@qq.com");
  14. teacher.setAddress("大丽龙泉县落魄山竹楼");
  15. Teacher save = teacherMapper.save(teacher);
  16. System.out.println(save);
  17. }
  18. @Test
  19. public void query() throws IOException {
  20. /**
  21. * 依靠id查询
  22. */
  23. Optional<Teacher> a00001 = teacherMapper.findById("A00002");
  24. System.out.println(a00001.get());
  25. /**
  26. * 查询所有
  27. */
  28. Iterable<Teacher> all = teacherMapper.findAll();
  29. all.forEach(teacher -> System.out.println(teacher));
  30. /**
  31. * 条件查询
  32. */
  33. MultiMatchQueryBuilder multiMatchQueryBuilder = QueryBuilders
  34. .multiMatchQuery("竹楼", "address");
  35. SearchRequest searchRequest = new SearchRequest("teacher");
  36. SearchSourceBuilder searchSourceBuilder = new SearchSourceBuilder();
  37. searchSourceBuilder.query(multiMatchQueryBuilder);
  38. searchRequest.source(searchSourceBuilder);
  39. SearchResponse search = restHightClient.elasticsearchClient().search(searchRequest, RequestOptions.DEFAULT);
  40. SearchHit[] hits = search.getHits().getHits();
  41. for (SearchHit hit: hits) {
  42. System.out.println(hit.getIndex()+":"+hit.getSourceAsString());
  43. }
  44. }
  45. /**
  46. *filter查询
  47. **/
  48. @Test
  49. public void filterQuery() throws IOException {
  50. SearchRequest searchRequest = new SearchRequest("teacher");
  51. SearchSourceBuilder searchSourceBuilder = new SearchSourceBuilder();
  52. searchSourceBuilder
  53. .query(QueryBuilders.termQuery("address","解放"))
  54. .postFilter(QueryBuilders.idsQuery().addIds("A00001"));
  55. searchRequest.source(searchSourceBuilder);
  56. SearchResponse search = restHightClient.elasticsearchClient()
  57. .search(searchRequest, RequestOptions.DEFAULT);
  58. SearchHit[] hits = search.getHits().getHits();
  59. for (SearchHit showHit:hits) {
  60. System.out.println(showHit.getSourceAsString());
  61. }
  62. searchSourceBuilder.query(QueryBuilders.matchQuery("address","解放"));
  63. searchRequest.source(searchSourceBuilder);
  64. SearchResponse response = restHightClient.elasticsearchClient()
  65. .search(searchRequest,RequestOptions.DEFAULT);
  66. SearchHit[] hits1 = response.getHits().getHits();
  67. for (SearchHit searchHit: hits1) {
  68. System.out.println(searchHit.getSourceAsString());
  69. }
  70. }
  71. }

存放数据

查询数据

依靠id查询

 查询所有数据

match条件查询

 filter过滤查询

 结语

代码虐我千百遍,待它如初恋,卖油翁小故事,无他,唯手熟尔。

 

 

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

闽ICP备14008679号