SpringBoot整合ES解析搜索返回字段问题怎么解决

其他教程   发布日期:2023年09月25日   浏览次数:357

这篇文章主要讲解了“SpringBoot整合ES解析搜索返回字段问题怎么解决”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“SpringBoot整合ES解析搜索返回字段问题怎么解决”吧!

    1. 数据构造

    索引2个文档到 hotel 索引中:

    1. PUT /hotel/_doc/1
    2. {
    3. "title": "文雅酒店",
    4. "city": "青岛",
    5. "price": 556,
    6. "create_time": "20200418120000",
    7. "amenities": "浴池,普通停车场/充电停车场",
    8. "full_room": false,
    9. "location": {
    10. "lat": 36.083078,
    11. "lon": 120.37566
    12. },
    13. "praise": 10
    14. }
    15. PUT /hotel/_doc/2
    16. {
    17. "title": "金都嘉怡假日酒店",
    18. "city": "北京",
    19. "price": 337,
    20. "create_time": "20210315200000",
    21. "amenities": "wifi,充电停车场/可升降停车场",
    22. "full_room": false,
    23. "location": {
    24. "lat": 39.915153,
    25. "lon": 116.403
    26. },
    27. "praise": 60
    28. }
    29. PUT /hotel/_doc/1
    30. {
    31. "title": "文雅酒店",
    32. "city": "青岛",
    33. "price": 556,
    34. "create_time": "20200418120000",
    35. "amenities": "浴池,普通停车场/充电停车场",
    36. "full_room": false,
    37. "location": {
    38. "lat": 36.083078,
    39. "lon": 120.37566
    40. },
    41. "praise": 10
    42. }
    43. PUT /hotel/_doc/2
    44. {
    45. "title": "金都嘉怡假日酒店",
    46. "city": "北京",
    47. "price": 337,
    48. "create_time": "20210315200000",
    49. "amenities": "wifi,充电停车场/可升降停车场",
    50. "full_room": false,
    51. "location": {
    52. "lat": 39.915153,
    53. "lon": 116.403
    54. },
    55. "praise": 60
    56. }

    2. ElasticSearch 查询集群中所有索引中的所有文档

    1. GET /hotel/_search
    1. {
    2. "took" : 499,
    3. "timed_out" : false,
    4. "_shards" : {
    5. "total" : 5,
    6. "successful" : 5,
    7. "skipped" : 0,
    8. "failed" : 0
    9. },
    10. "hits" : {
    11. "total" : {
    12. "value" : 2,
    13. "relation" : "eq"
    14. },
    15. "max_score" : 1.0,
    16. "hits" : [
    17. {
    18. "_index" : "hotel",
    19. "_type" : "_doc",
    20. "_id" : "2",
    21. "_score" : 1.0,
    22. "_source" : {
    23. "title" : "金都嘉怡假日酒店",
    24. "city" : "北京",
    25. "price" : 337,
    26. "create_time" : "20210315200000",
    27. "amenities" : "wifi,充电停车场/可升降停车场",
    28. "full_room" : false,
    29. "location" : {
    30. "lat" : 39.915153,
    31. "lon" : 116.403
    32. },
    33. "praise" : 60
    34. }
    35. },
    36. {
    37. "_index" : "hotel",
    38. "_type" : "_doc",
    39. "_id" : "1",
    40. "_score" : 1.0,
    41. "_source" : {
    42. "title" : "文雅酒店",
    43. "city" : "青岛",
    44. "price" : 556,
    45. "create_time" : "20200418120000",
    46. "amenities" : "浴池,普通停车场/充电停车场",
    47. "full_room" : false,
    48. "location" : {
    49. "lat" : 36.083078,
    50. "lon" : 120.37566
    51. },
    52. "praise" : 10
    53. }
    54. }
    55. ]
    56. }
    57. }

    3. ElasticSearch 搜索结果字段解析

    1. took 搜索请求耗费了多少毫秒

    1. took
    值告诉我们执行整个搜索请求耗费了多少毫秒。

    2. shards 查询中参与分片的总数

    1. _shards
    部分告诉我们在查询中参与分片的总数,以及这些分片成功了多少个失败了多少个。正常情况下我们不希望分片失败,但是分片失败是可能发生的。如果我们遭遇到一种灾难级别的故障,在这个故障中丢失了相同分片的原始数据和副本,那么对这个分片将没有可用副本来对搜索请求作出响应。假若这样,Elasticsearch 将报告这个分片是失败的,但是会继续返回剩余分片的结果。

    3. timed_out 查询是否超时

    1. timed_out
    值告诉我们查询是否超时。默认情况下,搜索请求不会超时。

    4. hits 表示搜索结果

    返回结果中最重要的部分是

    1. hits
    ,它包含
    1. total
    字段来表示匹配到的文档总数,并且一个
    1. hits
    数组包含所查询结果的前十个文档。在解析搜索结果时,我们通常需要关注以下几个字段:

    hits.total.value:匹配的文档总数。
    hits.max_score:与查询所匹配文档的_score的最大值。
    hits.hits:匹配的文档列表。
    hits.hits._source:匹配的文档的原始数据。
    hits.hits._score:匹配的文档的分数。它衡量了文档与查询的匹配程度,默认情况下,首先返回最相关的文档结果,就是说,返回的文档是按照score 降序排列的。
    hits.hits.highlight:匹配的文档的高亮显示信息。

    4. SpringBoot 整合ElasticSearch获取搜索结果

    1. @Slf4j
    2. @Service
    3. public class ElasticSearchImpl {
    4. @Autowired
    5. private RestHighLevelClient restHighLevelClient;
    6. public void searchUser() throws IOException {
    7. SearchSourceBuilder searchSourceBuilder = new SearchSourceBuilder();
    8. SearchRequest searchRequest = new SearchRequest(new String[]{"hotel"},searchSourceBuilder);
    9. SearchResponse searchResponse = restHighLevelClient.search(searchRequest, RequestOptions.DEFAULT);
    10. TimeValue took = searchResponse.getTook();
    11. System.out.println("took = " + took);
    12. // 搜索结果
    13. SearchHits searchHits = searchResponse.getHits();
    14. // hits.total.value:匹配的文档总数
    15. TotalHits totalHits = searchHits.getTotalHits();
    16. long value = totalHits.value;
    17. System.out.println("value = " + value);
    18. // hits.max_score:与查询所匹配文档的_score的最大值
    19. float maxScore = searchHits.getMaxScore();
    20. System.out.println("maxScore = " + maxScore);
    21. // hits.hits:匹配的文档列表
    22. SearchHit[] hits = searchHits.getHits();
    23. for (SearchHit hit : hits) {
    24. // hits.hits._source:匹配的文档的原始数据
    25. String sourceAsString = hit.getSourceAsString();
    26. System.out.println("sourceAsString = " + sourceAsString);
    27. // hits.hits._id:匹配的文档的id
    28. String id = hit.getId();
    29. System.out.println("id = " + id);
    30. Map<String, DocumentField> fields = hit.getFields();
    31. System.out.println("fields = " + fields);
    32. String index = hit.getIndex();
    33. System.out.println("index = " + index);
    34. float score = hit.getScore();
    35. System.out.println("score = " + score);
    36. }
    37. System.out.println(searchResponse);
    38. }
    39. }
    40. @Slf4j
    41. @Service
    42. public class ElasticSearchImpl {
    43. @Autowired
    44. private RestHighLevelClient restHighLevelClient;
    45. public void searchUser() throws IOException {
    46. SearchSourceBuilder searchSourceBuilder = new SearchSourceBuilder();
    47. SearchRequest searchRequest = new SearchRequest(new String[]{"hotel"},searchSourceBuilder);
    48. SearchResponse searchResponse = restHighLevelClient.search(searchRequest, RequestOptions.DEFAULT);
    49. TimeValue took = searchResponse.getTook();
    50. System.out.println("took = " + took);
    51. // 搜索结果
    52. SearchHits searchHits = searchResponse.getHits();
    53. // hits.total.value:匹配的文档总数
    54. TotalHits totalHits = searchHits.getTotalHits();
    55. long value = totalHits.value;
    56. System.out.println("value = " + value);
    57. // hits.max_score:与查询所匹配文档的_score的最大值
    58. float maxScore = searchHits.getMaxScore();
    59. System.out.println("maxScore = " + maxScore);
    60. // hits.hits:匹配的文档列表
    61. SearchHit[] hits = searchHits.getHits();
    62. for (SearchHit hit : hits) {
    63. // hits.hits._source:匹配的文档的原始数据
    64. String sourceAsString = hit.getSourceAsString();
    65. System.out.println("sourceAsString = " + sourceAsString);
    66. // hits.hits._id:匹配的文档的id
    67. String id = hit.getId();
    68. System.out.println("id = " + id);
    69. Map<String, DocumentField> fields = hit.getFields();
    70. System.out.println("fields = " + fields);
    71. String index = hit.getIndex();
    72. System.out.println("index = " + index);
    73. float score = hit.getScore();
    74. System.out.println("score = " + score);
    75. }
    76. System.out.println(searchResponse);
    77. }
    78. }
    1. took=2ms
    2. value = 2
    3. maxScore = 1.0
    4. sourceAsString = {"title":"金都嘉怡假日酒店","city":"北京","price":337,"create_time":"20210315200000","amenities":"wifi,充电停车场/可升降停车场","full_room":false,"location":{"lat":39.915153,"lon":116.403},"praise":60}
    5. id = 2
    6. fields = {}
    7. index = hotel
    8. score = 1.0
    9. sourceAsString = {"title":"文雅酒店","city":"青岛","price":556,"create_time":"20200418120000","amenities":"浴池,普通停车场/充电停车场","full_room":false,"location":{"lat":36.083078,"lon":120.37566},"praise":10}
    10. id = 1
    11. fields = {}
    12. index = hotel
    13. score = 1.0
    1. {
    2. "took": 2,
    3. "timed_out": false,
    4. "_shards": {
    5. "total": 5,
    6. "successful": 5,
    7. "skipped": 0,
    8. "failed": 0
    9. },
    10. "hits": {
    11. "total": {
    12. "value": 2,
    13. "relation": "eq"
    14. },
    15. "max_score": 1.0,
    16. "hits": [
    17. {
    18. "_index": "hotel",
    19. "_type": "_doc",
    20. "_id": "2",
    21. "_score": 1.0,
    22. "_source": {
    23. "title": "金都嘉怡假日酒店",
    24. "city": "北京",
    25. "price": 337,
    26. "create_time": "20210315200000",
    27. "amenities": "wifi,充电停车场/可升降停车场",
    28. "full_room": false,
    29. "location": {
    30. "lat": 39.915153,
    31. "lon": 116.403
    32. },
    33. "praise": 60
    34. }
    35. },
    36. {
    37. "_index": "hotel",
    38. "_type": "_doc",
    39. "_id": "1",
    40. "_score": 1.0,
    41. "_source": {
    42. "title": "文雅酒店",
    43. "city": "青岛",
    44. "price": 556,
    45. "create_time": "20200418120000",
    46. "amenities": "浴池,普通停车场/充电停车场",
    47. "full_room": false,
    48. "location": {
    49. "lat": 36.083078,
    50. "lon": 120.37566
    51. },
    52. "praise": 10
    53. }
    54. }
    55. ]
    56. }
    57. }

    5 .ElasticSearch 搜索结果的面试题

    1. ElasticSearch 搜索结果中的 _score 字段是什么意思?

    答:_score 字段表示匹配文档的相关度得分,分数越高表示匹配度越高。

    2. ElasticSearch 搜索结果中的 highlight 字段是什么意思?

    答:highlight 字段表示匹配文档中被高亮显示的字段及其高亮显示的内容。

    3. 如何获取 ElasticSearch 搜索结果中的总文档数?

    答:可以通过 hits.total.value 字段获取匹配的文档总数。

    4. 如何获取 ElasticSearch 搜索结果中的匹配文档列表?

    答:可以通过 hits.hits 字段获取匹配的文档列表。

    5. 如何获取 ElasticSearch 搜索结果中匹配文档的原始数据?

    答:可以通过 hits.hits._source 字段获取匹配文档的原始数据。

    6. 如何获取 ElasticSearch 搜索结果中匹配文档的高亮显示信息?

    答:可以通过 hits.hits.highlight 字段获取匹配文档的高亮显示信息。

    7. ElasticSearch 搜索结果中的 _shards 字段是什么意思?

    答:_shards 字段表示搜索涉及的分片信息,包括总分片数、成功的分片数、跳过的分片数和失败的分片数。

    8. ElasticSearch 搜索结果中的 took 字段是什么意思?

    答:took 字段表示搜索耗时,单位为毫秒。

    以上就是SpringBoot整合ES解析搜索返回字段问题怎么解决的详细内容,更多关于SpringBoot整合ES解析搜索返回字段问题怎么解决的资料请关注九品源码其它相关文章!