干货 |《从Lucene到Elasticsearch全文检索实战》拆解实践
1、题记
2018年3月初,萌生了一个想法:对Elasticsearch相关的技术书籍做拆解阅读,该想法源自非计算机领域红火已久的【樊登读书会】、得到的每天听本书、XX拆书帮等。
目前市面上Elasticsearch的中文书籍就那么基本,针对ES5.X以上的三本左右;国外翻译有几本,都是针对ES1.X,2.X版本,其中《深入理解Elasticsearch》还算比较经典。
拆书的目的:
- 1)梳理已有的Elasticsearch知识体系;
- 2)拾遗拉在角落的Elasticsearch知识点;
- 3)通过手敲动代码或命令行,在实践中再次“温故知新”,提前增加知识储备,避免项目/产品实战中的“临阵抱佛脚”;
- 4)最大化的节省您的宝贵时间,让您最快的时间吸取最精华的“干货”。
本次解读是《从Lucene到Elasticsearch全文检索实战》。
2、本书梗概
作者是中科院硕士姚攀(90后)在读研究生期间根据实习写成CSDN博客,最终成书。
- 该书1/4章节讲解Lucence相关原理及实战;
- 1/2章节讲解Elasticsearch基本概念:集群入门、搜索分类详解、聚合分析、Java API;
- 1/4章节讲解Elasticsearch集群管理、项目实战、Hadoop实战。
总体评价:
优点:
- 1)涵盖了Elasticsearch相关的基本概念、基础原理;
- 2)有两个实战项目分享;
缺点:
- 1)某些概念就只是有分类,没有讲解出不同分类的区别,不同分类的适用场景;
- 2)某些细节点涵盖不全,偏理论,好多知识技术点,实战中应用会有不同。
- 3)书基于Elasticsearch5.4.0讲解,一些特性6.X已不适用。
3、核心知识点梳理
以下的DSL都是通过ElasticsearchV6.2.2版本试验过的。
3.1 mget 一次获取多个文档。
GET test_index/test_type/_mget
{
"docs":[
{"_id":1},
{"_id":3}
]
}
最小简化版本:
GET test_index/test_type/_mget
{
"ids":[1,3]
}
3.2 update更新
——添加、删除、更新字段
POST test_index/test_type/1
{
"no":1,
"name":"奔驰X100",
"addr":"德国",
"price":1000000,
"tags" : ["red"]
}
3.2.1 添加字段
以下添加了新字段tags,赋值为“red”。
POST test_index/test_type/1/_update
{
"script":"ctx._source.tags = \"red\""
}
修改后结果为:
{
"_index": "test_index",
"_type": "test_type",
"_id": "1",
"_version": 6,
"found": true,
"_source": {
"no": 1,
"name": "奔驰X100",
"addr": "德国",
"price": 1000000,
"tags": "red"
}
}
3.2.2 删除字段
POST test_index/test_type/1/_update
{
"script":"ctx._source.remove(\"new_field\")"
}
3.2.3 更新字段-添加
POST test_index/test_type/1/_update
{
"script" : {
"source": "ctx._source.tags.add(params.tag)",
"lang": "painless",
"params" : {
"tag" : "blue"
}
}
}
更新后结果如下:
{
"_index": "test_index",
"_type": "test_type",
"_id": "1",
"_version": 8,
"found": true,
"_source": {
"no": 1,
"name": "奔驰X100",
"addr": "德国",
"price": 1000000,
"tags": [
"red",
"blue"
]
}
}
3.2.4 删除字段(if判定)
POST test_index/test_type/1/_update
{
"script" : {
"source": "if (ctx._source.tags.contains(params.tag)) { ctx.op = 'delete' } else { ctx.op = 'none' }",
"lang": "painless",
"params" : {
"tag" : "red"
}
}
}
3.3 bulk批量请求的注意事项
- 每一行的结尾处都必须有换行符"\n",最后一行也要有,换行符可以有效的分隔每行。
- 注意一次提交文件的大小,整个批量请求需要被加载到请求节点的内存里,所以请求越大,给其他请求可用的内存越小。
- 最佳bulk请求的大小,完全取决于服务器的硬件、文档的大小和复杂度以及索引和搜索的负载。
3.4 并发修改文档导致版本冲突的问题
以下是社区的问题,我认为更切合知识点。
线上的场景可能会对一个文档同一秒进行并发修改,导致会出现个别的VersionConflictEngineException 异常,我猜测是并发upsert请求 可能存在先获取到版本号的请求 比 后获取到版本号的请求 执行慢或者执行晚导致的,
毕竟默认es不会对文档操作加锁。但是如在不做锁机制的情况下处理这个问题呢。
解决方案(初步):
es版本控制有内部和外部两种类型。默认情况下,es使用内部版本控制。
version_type=external的时候是外部值控制。 在使用外部版本类型时,
系统会检查传递给索引请求的版本号是否大于当前存储的文档的版本,
如果为true,则文档将被索引并使用新的版本号。
如果提供的值小于或等于存储文档的版本号,则会发生版本冲突,索引操作将失败。
PUT /test_index/test_type/10?version=1520834740000&version_type=external
{
"newadd":11,
"test":"true"
}
返回结果:
{
"_index": "test_index",
"_type": "test_type",
"_id": "10",
"_version": 1520834740000,
"found": true,
"_source": {
"newadd": 11,
"test": "true"
}
}
所以最简单的实现方式就是每次更新使用当前==时间戳==作为版本号,
3.5 动态映射和静态映射的区分
- 动态映射:文档写入ES中,它会根据字段的类型自动识别,这种称为:动态映射;
- 静态映射:写入数据之前对字段的属性进行手工设置。
3.6 text字段的特殊性
- 不用于排序,很少用于聚合(termsAggrions除外,未来版本会彻底禁止text类型聚合操作)。
- 题外话:如果需要可以借助 multi-fields.使用:keyword 类型。
- 官网解读:
http://t.cn/R6jy9Z3,http://t.cn/RnKU4tG
3.7 数据类型存储建议
对于数字类型的字段,在满足需求的情况下,要尽可能的选择范围小的数字类型。
3.8 过滤和搜索的区别
- 过滤:只根据条件对文档进行过滤,不计算评分;
- 搜索: 解决的是相关度的问题。
当用户输入一个查询,Elasticsearch通过排序模型计算文档和查询关键词之间的相关度,按照评分排序后返回最想关的文档给用户。
e
细化:Elasticsearch接受到关键词以后到倒排索引中进行查询,通过倒排索引中维护的倒排记录表找到关键词对应的文档集合,然后做评分、排序、高亮处理,最终返回搜索结果给用户。
注意:ES是按照查询和文档的相关度进行排序的,默认按照评分降序排序。
3.9指定搜索字段的权重
GET _search
{
"query":{
"multi_match": {
"query": "美国",
"fields": ["addr^5", "name"]
}
}
}
3.10 返回字段中至少有一个非控制的文档。
GET _search
{
"query":{
"exists":{
"field":"name"
}
}
}
3.11 固定得分检索
GET /_search
{
"query": {
"constant_score" : {
"filter" : {
"term" : { "addr.keyword" : "美国"}
},
"boost" : 1.2
}
}
}
返回结果:
{
"took": 1,
"timed_out": false,
"_shards": {
"total": 32,
"successful": 32,
"skipped": 0,
"failed": 0
},
"hits": {
"total": 3,
"max_score": 1.2,
"hits": [
{
"_index": "test_index",
"_type": "test_type",
"_id": "5",
"_score": 1.2,
"_source": {
"no": 5,
"name": "福特500",
"addr": "美国",
"price": 180000
}
},
{
"_index": "test_index",
"_type": "test_type",
"_id": "6",
"_score": 1.2,
"_source": {
"no": 6,
"name": null,
"addr": "美国",
"price": 180000
}
},
{
"_index": "test_index",
"_type": "test_type",
"_id": "3",
"_score": 1.2,
"_source": {
"no": 3,
"name": "福特300",
"addr": "美国",
"price": 300000
}
}
]
}
}
3.12 修改文档得分检索
借助:function Score Query 实现。
3.13 获取相似文章
{
"query": {
"more_like_this": {
"fields": [
"title"
],
"like": "新时代的领路人",
"min_term_freq": 1,
"max_query_terms": 12
}
},
"_source": "title",
"from": 1000,
"size": 5
}
3.14 脚本检索
以下内容是6.X验证的。
5.X版本要把source改成inline。
POST test_index/_search
{
"query":{
"bool":{
"must":{
"script":{
"script":{
"source": "doc['price'].value > 100000",
"lang":"painless"
}
}
}
}
}
}
3.15 多字段高亮
字段高亮已经比较熟悉,有一种场景是:当我搜索title字段的时候,我期望高亮:title、content、abstr如何做到呢?
通俗的讲:
不搜索某个字段,可以顺带高亮该字段。
POST test_index/test_type/_search
{
"query":{
"match_phrase":{
"addr":"美国"
}
},
"highlight": {
"require_field_match":false,
"fields":{
"addr":{"pre_tags":["<strong>"],
"post_tags":["</strong>"]
},
"name":{"pre_tags":["<strong>"],
"post_tags":["</strong>"]}
}
}
}
{
"took": 116,
"timed_out": false,
"_shards": {
"total": 5,
"successful": 5,
"skipped": 0,
"failed": 0
},
"hits": {
"total": 3,
"max_score": 1.1143606,
"hits": [
{
"_index": "test_index",
"_type": "test_type",
"_id": "6",
"_score": 1.1143606,
"_source": {
"no": 6,
"name": "大片美国",
"addr": "美国",
"price": 180000
},
"highlight": {
"name": [
"大片<strong>美</strong><strong>国</strong>"
],
"addr": [
"<strong>美</strong><strong>国</strong>"
]
}
},
{
"_index": "test_index",
"_type": "test_type",
"_id": "5",
"_score": 0.5753642,
"_source": {
"no": 5,
"name": "福特500",
"addr": "美国",
"price": 180000
},
"highlight": {
"addr": [
"<strong>美</strong><strong>国</strong>"
]
}
},
{
"_index": "test_index",
"_type": "test_type",
"_id": "3",
"_score": 0.5753642,
"_source": {
"no": 3,
"name": "福特300",
"addr": "美国",
"price": 300000
},
"highlight": {
"addr": [
"<strong>美</strong><strong>国</strong>"
]
}
}
]
}
}
3.16 分片影响评分
Elasitcsearch 5.4 之后对于text类型的字段,默认采用是BM25评分模型,而不是基于tf-idf的向量空间模型,评分模型的选择可以通过similarity参数在映射中指出。
需要注意的是:ES在每个分片上单独打分,分片的数量会影响打分的结果。
这个问题比较有趣的讨论如下:
https://elasticsearch.cn/question/2275
3.17 集群统计
统计集群的两个方面信息:
一:索引层面
- 分片数、存储大小、内存使用情况;
二:节点层面
- 节点数量、节点角色、操作系统、JVM版本、内存、CPU、插件信息x-pack等。
GET /_cluster/stats
4、核心工具推荐
工欲善其事必先利其器,好的工具能提升开发效率。
4.1 Luke 工具
1、功能介绍:
查看Luncene、Solr、Elasitcsearch索引的GUI工具,方便开发和诊断。
2、核心功能点:
- 查看分析字段内容;
- 搜素索引;
- 执行索引维护;
- 从HDFS读取索引;
- 将全部或者部分索引转换为XML格式导出。
- 测试自定义的Lucene分词器。
3、工具地址:
https://github.com/DmitryKey/luke
4、最新版本
- Upgrade to 7.2.0
- http://t.cn/RnKU9dz
5、注意
Luke的版本要和Lucene一致。
4.2 Tika工具
1、简介
Apache Tika是一个用于文本检测和文件内容提取的库。
2、特点
Tika 可以检测超过1000种不同类型的文档,比如PPT、PDF、DOC、XLS,所有的文档类型可以通过一个简单的接口被解析。
3、应用
Tika广泛应用于搜素引擎、内容分析、文本翻译、数字管理等领域。
4、下载地址
http://tika.apache.org/download.htm
5、扩展
如果有全文知识库检索的项目,可以考虑使用Tika对多种不同类型的文档进行文档解析。
5、小结
此为拆解的第一本书,印证了我之前说的,核心知识点在Elasticsearch官网文档中都有更详尽的英文解读。
目前市面上没有一本书能涵盖全部的知识点。
书的目的多半是作者的一些学习、实践积累,更多的知识还得靠实践中总结、实践、再总结。
“书写是为了更好的思考”,与大家共勉!一起加油!
下一本书,紧张梳理中…..
本文转载自公众号铭毅天下Elasticsearch