当前位置:   article > 正文

在Elasticsearch中查询Term Vectors词条向量信息

搜索 很多term的向量怎么搜索

在Elasticsearch中查询Term Vectors词条向量信息

这篇文章有点深度,可能需要一些Lucene或者全文检索的背景。由于我也很久没有看过Lucene了,有些地方理解的不对还请多多指正。
更多内容还请参考整理的ELK教程

关于Term Vectors

额,对于这个专业词汇,暂且就叫做词条向量吧,因为实在想不出什么标准的翻译。说的土一点,也可以理解为关于词的一些统计信息。再说的通俗点,如果想进行全文检索,即从一个词搜索与它相关的文档,总得有个什么记录的信息吧!这就是Term Vectors。

为了不干扰正常的理解,后续就都直接称呼英文的名字吧!免得误导...

先不看这篇文章,如果想要记录全文检索的信息,大家设想一下我们都需要什么内容,就拿"hello world! hello everybody!"来举例。

  • 首先就是这句话都有什么词,"hello","world","everybody"
  • 然后是这些词关联的文档,因为有可能不止上面这一句话。
  • 最后就是词在文档中的位置,比如hello,出现了两次,就需要记录两份位置信息。

关于TermVector在Lucene中的概念,可以参考网络中的一篇文章

使用_termvectors查询词条向量

在Elasticsearch中可以使用_termvectors查询一个文档中词条相关的信息。这个文档可能是es中存储的,也可能是用户直接在请求体中自定义的。这个方法默认是一个实时的统计信息。

常见的语法如:

curl -XGET 'http://localhost:9200/twitter/tweet/1/_termvectors?pretty=true'

也可以指定某个字段,返回这个字段的信息:

curl -XGET 'http://localhost:9200/twitter/tweet/1/_termvectors?fields=text,...'

注意,在Elasticsearch中2.0之前都是使用_termvector,之后都是使用的_termvectors。

返回的信息

使用上面的请求,会返回词条相关的信息:

  • 词条的信息,比如position位置、start_offset开始的偏移值、end_offset结束的偏移值、词条的payLoads(这个主要用于自定义字段的权重)
  • 词条统计,doc_freq、ttf该词出现的次数、term_freq词的频率
  • 字段统计,包含sum_doc_freq该字段中词的数量(去掉重复的数目)、sum_ttf文档中词的数量(包含重复的数目)、doc_count涉及的文档数等等。

默认会返回词条的信息和统计,而不会返回字段的统计。

另外,默认这些统计信息是基于分片的,可以设置dfs为true,返回全部分片的信息,但是会有一定的性能问题,所以不推荐使用。还可以使用field字段对返回的统计信息的字段进行过滤,只返回感兴趣的那部分内容。

例子1:返回存储的Term Vectors信息

首先需要定义一下映射的信息:

  1. curl -s -XPUT 'http://localhost:9200/twitter/' -d '{
  2. "mappings": {
  3. "tweet": {
  4. "properties": {
  5. "text": {
  6. "type": "string",
  7. "term_vector": "with_positions_offsets_payloads",
  8. "store" : true,
  9. "analyzer" : "fulltext_analyzer"
  10. },
  11. "fullname": {
  12. "type": "string",
  13. "term_vector": "with_positions_offsets_payloads",
  14. "analyzer" : "fulltext_analyzer"
  15. }
  16. }
  17. }
  18. },
  19. "settings" : {
  20. "index" : {
  21. "number_of_shards" : 1,
  22. "number_of_replicas" : 0
  23. },
  24. "analysis": {
  25. "analyzer": {
  26. "fulltext_analyzer": {
  27. "type": "custom",
  28. "tokenizer": "whitespace",
  29. "filter": [
  30. "lowercase",
  31. "type_as_payload"
  32. ]
  33. }
  34. }
  35. }
  36. }
  37. }'

然后插入两条数据:

  1. curl -XPUT 'http://localhost:9200/twitter/tweet/1?pretty=true' -d '{
  2. "fullname" : "John Doe",
  3. "text" : "twitter test test test "
  4. }'
  5. curl -XPUT 'http://localhost:9200/twitter/tweet/2?pretty=true' -d '{
  6. "fullname" : "Jane Doe",
  7. "text" : "Another twitter test ..."
  8. }'

接下来查询一下文档1的Term Vectors信息:

  1. curl -XGET 'http://localhost:9200/twitter/tweet/1/_termvectors?pretty=true' -d '{
  2. "fields" : ["text"],
  3. "offsets" : true,
  4. "payloads" : true,
  5. "positions" : true,
  6. "term_statistics" : true,
  7. "field_statistics" : true
  8. }'

可以得到下面的结果:

  1. {
  2. "_id": "1",
  3. "_index": "twitter",
  4. "_type": "tweet",
  5. "_version": 1,
  6. "found": true,
  7. "term_vectors": {
  8. "text": {
  9. "field_statistics": {
  10. "doc_count": 2,
  11. "sum_doc_freq": 6,
  12. "sum_ttf": 8
  13. },
  14. "terms": {
  15. "test": {
  16. "doc_freq": 2,
  17. "term_freq": 3,
  18. "tokens": [
  19. {
  20. "end_offset": 12,
  21. "payload": "d29yZA==",
  22. "position": 1,
  23. "start_offset": 8
  24. },
  25. {
  26. "end_offset": 17,
  27. "payload": "d29yZA==",
  28. "position": 2,
  29. "start_offset": 13
  30. },
  31. {
  32. "end_offset": 22,
  33. "payload": "d29yZA==",
  34. "position": 3,
  35. "start_offset": 18
  36. }
  37. ],
  38. "ttf": 4
  39. },
  40. "twitter": {
  41. "doc_freq": 2,
  42. "term_freq": 1,
  43. "tokens": [
  44. {
  45. "end_offset": 7,
  46. "payload": "d29yZA==",
  47. "position": 0,
  48. "start_offset": 0
  49. }
  50. ],
  51. "ttf": 2
  52. }
  53. }
  54. }
  55. }
  56. }

可以看到上面返回了词条的统计信息,以及字段的统计信息。

例子2:轻量级生成Term Vectors

虽然这个字段不是显示存储的,但是仍然可以进行词条向量的信息统计。因为ES可以在查询的时候,从_source中分析出相应的内容。

  1. curl -XGET 'http://localhost:9200/twitter/tweet/1/_termvectors?pretty=true' -d '{
  2. "fields" : ["text", "some_field_without_term_vectors"],
  3. "offsets" : true,
  4. "positions" : true,
  5. "term_statistics" : true,
  6. "field_statistics" : true
  7. }'

关于字段的存储于不存储,可以简单的理解为:

  • 如果字段存储,在ES进行相关的查询时,会直接从存储的字段读取信息
  • 如果字段不存储,ES会从_source中查询分析,提取相应的部分。

由于每次读取操作都是一次的IO,因此如果你不是只针对某个字段、或者_source中的信息太多,那么请优先不存储该字段,即从_source中获取就好。

例子3:手动自定义的文档统计

ES支持对一个用户自定义的文档进行分析,比如:

  1. curl -XGET 'http://localhost:9200/twitter/tweet/_termvectors' -d '{
  2. "doc" : {
  3. "fullname" : "John Doe",
  4. "text" : "twitter test test test"
  5. }
  6. }'

注意如果这个字段没有预先定义映射,那么会按照默认的映射配置进行分析。

例子4:重新定义分析器

可以使用per_field_analyzer参数定义该字段的分析器,这样每个字段都可以使用不同的分析器,分析其词条向量的信息。如果这个字段已经经过存储,那么会重新生成它的词条向量,如:

  1. curl -XGET 'http://localhost:9200/twitter/tweet/_termvectors' -d '{
  2. "doc" : {
  3. "fullname" : "John Doe",
  4. "text" : "twitter test test test"
  5. },
  6. "fields": ["fullname"],
  7. "per_field_analyzer" : {
  8. "fullname": "keyword"
  9. }
  10. }'

会返回:

  1. {
  2. "_index": "twitter",
  3. "_type": "tweet",
  4. "_version": 0,
  5. "found": true,
  6. "term_vectors": {
  7. "fullname": {
  8. "field_statistics": {
  9. "sum_doc_freq": 1,
  10. "doc_count": 1,
  11. "sum_ttf": 1
  12. },
  13. "terms": {
  14. "John Doe": {
  15. "term_freq": 1,
  16. "tokens": [
  17. {
  18. "position": 0,
  19. "start_offset": 0,
  20. "end_offset": 8
  21. }
  22. ]
  23. }
  24. }
  25. }
  26. }
  27. }

例子5:字段过滤器

在进行词条向量的信息查询时,可以根据自定义的过滤器,返回感兴趣的信息。

常用的过滤器参数如:

  • max_num_terms 最大的词条数目
  • min_term_freq 最小的词频,比如忽略那些在字段中出现次数小于一定值的词条。
  • max_term_freq 最大的词频
  • min_doc_freq 最小的文档频率,比如忽略那些在文档中出现次数小于一定的值的词条
  • max_doc_freq 最大的文档频率
  • min_word_length 忽略的词的最小长度
  • max_word_length 忽略的词的最大长度
  1. GET /imdb/movies/_termvectors
  2. {
  3. "doc": {
  4. "plot": "When wealthy industrialist Tony Stark is forced to build an armored suit after a life-threatening incident, he ultimately decides to use its technology to fight against evil."
  5. },
  6. "term_statistics" : true,
  7. "field_statistics" : true,
  8. "dfs": true,
  9. "positions": false,
  10. "offsets": false,
  11. "filter" : {
  12. "max_num_terms" : 3,
  13. "min_term_freq" : 1,
  14. "min_doc_freq" : 1
  15. }
  16. }

会返回:

  1. {
  2. "_index": "imdb",
  3. "_type": "movies",
  4. "_version": 0,
  5. "found": true,
  6. "term_vectors": {
  7. "plot": {
  8. "field_statistics": {
  9. "sum_doc_freq": 3384269,
  10. "doc_count": 176214,
  11. "sum_ttf": 3753460
  12. },
  13. "terms": {
  14. "armored": {
  15. "doc_freq": 27,
  16. "ttf": 27,
  17. "term_freq": 1,
  18. "score": 9.74725
  19. },
  20. "industrialist": {
  21. "doc_freq": 88,
  22. "ttf": 88,
  23. "term_freq": 1,
  24. "score": 8.590818
  25. },
  26. "stark": {
  27. "doc_freq": 44,
  28. "ttf": 47,
  29. "term_freq": 1,
  30. "score": 9.272792
  31. }
  32. }
  33. }
  34. }
  35. }
posted @ 2016-04-03 00:44 xingoo 阅读( ...) 评论( ...) 编辑 收藏
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/黑客灵魂/article/detail/1010267
推荐阅读
相关标签
  

闽ICP备14008679号