• ElasticSearch——手写一个ElasticSearch分词器(附源码)


    1. 分词器插件

    ElasticSearch提供了对文本内容进行分词的插件系统,对于不同的语言的文字分词器,规则一般是不一样的,而ElasticSearch提供的插件机制可以很好的集成各语种的分词器。

    Elasticsearch 本身并不支持中文分词,但好在它支持编写和安装额外的分词管理插件,而开源的中文分词器 ik 就非常强大,具有20万以上的常用词库,可以满足一般的常用分词功能。

    1.1 分词器插件作用

    分词器的主要作用是把文本拆分成一个个最小粒度的单词,然后给ElasticSearch作为索引系统的词条使用。不同语种拆分单词规则也是不一样的,最常见的就是中文分词和英文分词。

    对于同一个文本,使用不同分词器,拆分的效果也是不同的。如:"中国人民共和国"使用ik_max_word分词器会被拆分成:中国人民共和国、中华人民、中华、华人、人民共和国、人民、共和国、共和、国,而使用standard分词器则会拆分成:中、国、人、民、共、和、国。被拆分后的词就可以作为ElasticSearch的索引词条来构建索引系统,这样就可以使用部分内容进行搜索了

    2. 常用分词器

    2.1 分词器介绍

    • standard

      标准分词器。处理英文能力强, 会将词汇单元转换成小写形式,并去除停用词和标点符号,对于非英文按单字切分

    • whitespace

      空格分词器。 针对英文,仅去除空格,没有其他任何处理, 不支持非英文

    • simple

      针对英文,通过非字母字符分割文本信息,然后将词汇单元统一为小写形式,数字类型的字符会被去除

    • stop

      stop 的功能超越了simplestopsimple的基础上增加了去除英文中的常用单词(如 thea 等),也可以更加自己的需要设置常用单词,不支持中文

    • keyword

      Keyword把整个输入作为一个单独词汇单元,不会对文本进行任何拆分,通常是用在邮政编码、电话号码等需要全匹配的字段上

    • pattern

      查询文本会被自动当做正则表达式处理,生成一组terms关键字,然后在对Elasticsearch进行查询

    • snowball

      雪球分析器,在 standard 的基础上添加了 snowball filterLucene官方不推荐使用

    • language

      一个用于解析特殊语言文本的analyzer集合,但不包含中文

    • ik

      IK分词器是一个开源的基于java语言开发的轻量级的中文分词工具包。 采用了特有的“正向迭代最细粒度切分算法”,支持细粒度和最大词长两种切分模式。支持:英文字母、数字、中文词汇等分词处理,兼容韩文、日文字符。 同时支持用户自定义词库。 它带有两个分词器:

      • ik_max_word : 将文本做最细粒度的拆分,尽可能多的拆分出词语
      • ik_smart:做最粗粒度的拆分,已被分出的词语将不会再次被其它词语占有
    • pinyin

      通过用户输入的拼音匹配 Elasticsearch 中的中文

    2.2 分词器示例

    对于同一个输入,使用不同分词器的结果。

    输入:栖霞站长江线14w6号断路器

    2.2.1 standard

    在这里插入图片描述

    {
        "tokens": [
            {
                "token": "栖",
                "start_offset": 0,
                "end_offset": 1,
                "type": "",
                "position": 0
            },
            {
                "token": "霞",
                "start_offset": 1,
                "end_offset": 2,
                "type": "",
                "position": 1
            },
            {
                "token": "站",
                "start_offset": 2,
                "end_offset": 3,
                "type": "",
                "position": 2
            },
            {
                "token": "长",
                "start_offset": 3,
                "end_offset": 4,
                "type": "",
                "position": 3
            },
            {
                "token": "江",
                "start_offset": 4,
                "end_offset": 5,
                "type": "",
                "position": 4
            },
            {
                "token": "线",
                "start_offset": 5,
                "end_offset": 6,
                "type": "",
                "position": 5
            },
            {
                "token": "14w6",
                "start_offset": 6,
                "end_offset": 10,
                "type": "",
                "position": 6
            },
            {
                "token": "号",
                "start_offset": 10,
                "end_offset": 11,
                "type": "",
                "position": 7
            },
            {
                "token": "断",
                "start_offset": 11,
                "end_offset": 12,
                "type": "",
                "position": 8
            },
            {
                "token": "路",
                "start_offset": 12,
                "end_offset": 13,
                "type": "",
                "position": 9
            },
            {
                "token": "器",
                "start_offset": 13,
                "end_offset": 14,
                "type": "",
                "position": 10
            }
        ]
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81

    2.2.2 ik

    • ik_smart

    在这里插入图片描述

    {
        "tokens": [
            {
                "token": "栖霞",
                "start_offset": 0,
                "end_offset": 2,
                "type": "CN_WORD",
                "position": 0
            },
            {
                "token": "站",
                "start_offset": 2,
                "end_offset": 3,
                "type": "CN_CHAR",
                "position": 1
            },
            {
                "token": "长江",
                "start_offset": 3,
                "end_offset": 5,
                "type": "CN_WORD",
                "position": 2
            },
            {
                "token": "线",
                "start_offset": 5,
                "end_offset": 6,
                "type": "CN_CHAR",
                "position": 3
            },
            {
                "token": "14w6",
                "start_offset": 6,
                "end_offset": 10,
                "type": "LETTER",
                "position": 4
            },
            {
                "token": "号",
                "start_offset": 10,
                "end_offset": 11,
                "type": "COUNT",
                "position": 5
            },
            {
                "token": "断路器",
                "start_offset": 11,
                "end_offset": 14,
                "type": "CN_WORD",
                "position": 6
            }
        ]
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • ik_max_word

    在这里插入图片描述

    {
        "tokens": [
            {
                "token": "栖霞",
                "start_offset": 0,
                "end_offset": 2,
                "type": "CN_WORD",
                "position": 0
            },
            {
                "token": "站长",
                "start_offset": 2,
                "end_offset": 4,
                "type": "CN_WORD",
                "position": 1
            },
            {
                "token": "长江",
                "start_offset": 3,
                "end_offset": 5,
                "type": "CN_WORD",
                "position": 2
            },
            {
                "token": "线",
                "start_offset": 5,
                "end_offset": 6,
                "type": "CN_CHAR",
                "position": 3
            },
            {
                "token": "14w6",
                "start_offset": 6,
                "end_offset": 10,
                "type": "LETTER",
                "position": 4
            },
            {
                "token": "14",
                "start_offset": 6,
                "end_offset": 8,
                "type": "ARABIC",
                "position": 5
            },
            {
                "token": "w",
                "start_offset": 8,
                "end_offset": 9,
                "type": "ENGLISH",
                "position": 6
            },
            {
                "token": "6",
                "start_offset": 9,
                "end_offset": 10,
                "type": "ARABIC",
                "position": 7
            },
            {
                "token": "号",
                "start_offset": 10,
                "end_offset": 11,
                "type": "COUNT",
                "position": 8
            },
            {
                "token": "断路器",
                "start_offset": 11,
                "end_offset": 14,
                "type": "CN_WORD",
                "position": 9
            },
            {
                "token": "断路",
                "start_offset": 11,
                "end_offset": 13,
                "type": "CN_WORD",
                "position": 10
            },
            {
                "token": "器",
                "start_offset": 13,
                "end_offset": 14,
                "type": "CN_CHAR",
                "position": 11
            }
        ]
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88

    2.2.3 pinyin

    在这里插入图片描述

    {
        "tokens": [
            {
                "token": "q",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 0
            },
            {
                "token": "qi",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 0
            },
            {
                "token": "栖霞站长江线14w6号断路器",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 0
            },
            {
                "token": "qixiazhanzhangjiangxian14w6haoduanluqi",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 0
            },
            {
                "token": "qxzzjx14w6hdlq",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 0
            },
            {
                "token": "x",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 1
            },
            {
                "token": "xia",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 1
            },
            {
                "token": "z",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 2
            },
            {
                "token": "zhan",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 2
            },
            {
                "token": "zhang",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 3
            },
            {
                "token": "j",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 4
            },
            {
                "token": "jiang",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 4
            },
            {
                "token": "xian",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 5
            },
            {
                "token": "14",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 6
            },
            {
                "token": "w",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 7
            },
            {
                "token": "6",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 8
            },
            {
                "token": "h",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 9
            },
            {
                "token": "hao",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 9
            },
            {
                "token": "d",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 10
            },
            {
                "token": "duan",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 10
            },
            {
                "token": "l",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 11
            },
            {
                "token": "lu",
                "start_offset": 0,
                "end_offset": 0,
                "type": "word",
                "position": 11
            }
        ]
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158

    3. 自定义分词器

    对于上面三种分词器的效果,在某些场景下可能都符合要求,下面来看看为什么需要自定义分词器。

    众所周知,在推荐系统中,对于拼音搜索是很有必要的,比如输入:"ls",希望返回与"ls"相关的索引词条,“零食(ls)”、“雷蛇(ls)”、“林书豪(lsh)”……,上面都是对的情况,但如果此处仅仅使用拼音分词器,可会"l"相关的索引词条也会被命中,比如"李宁(l)"、“兰蔻(l)”……,这种情况下的推荐就是不合理的。

    如果使用拼音分词器,对于上面的输入"栖霞站长江线14w6号断路器",会产生出很多单个字母的索引词条,比如:"h""d""l"等。如果用户输入的查询条件"ql",根本不想看到这条”栖霞站长江线14w6号断路器“数据,但由于"l"词条被命中,所有该条数据也会被返回。

    那如果避免这些单字母词条的索引生成呢?下面就自己手写一个ElasticSearch的分词器,定制化!!!

    3.1 分词器原理

    3.1.1 分词器插件工作流程

    在这里插入图片描述

    • ElasticSearch在启动过程中会读取plugins/分词器/plugin-descriptor.properties文件
    • 读取该配置文件获取分词器插件启动类信息并进行初始化,属性classname指向的启动类
    • 分词器插件启动类必须继承AnalysisPlugin,确保ElasticSearch可以调用我们自定义的类来获取分词器对象
    • ElasticSearch调用分词进行分词时,会实例化AnalyzerProvider对象,该对象中有get()方法可以获取到我们自定义的Analyzer对象,同时内部tokenStream()方法会调用用createComponents()方法实例化我们自定义的Tokenizer对象
    • Tokenizer是自定义分词器的核心组件,核心方法有4个,如下:
      • incrementToken():用来判断分词集合列表中是否还存在没读取的词条信息,以及设置term的基础属性如:长度,起始偏移量,结束偏移量,词条等
      • reset():重置默认数据和加载自定义模型来处理用户输入的字符串数据并进行分词处理,加入到分词集合列表
      • end():设置当分词结束的偏移量信息
      • close():销毁输入流对象和自定义的数据
    • Tokenizer对象每次完成一次用户输入文本的分词过程都会进行上述4步方法调用

    3.2 分词器验证

    • 安装分词器

      将打包完的分词器zip文件,拷贝放到ElasticSearch安装目录的plugins目录下,可用elasticsearch-plugin list命令查看
      在这里插入图片描述

    • 启动ElasticSearch

    • 验证分词器

    在这里插入图片描述

    {
        "tokens": [
            {
                "token": "栖霞",
                "start_offset": 0,
                "end_offset": 2,
                "type": "word",
                "position": 0
            },
            {
                "token": "qixia",
                "start_offset": 0,
                "end_offset": 2,
                "type": "word",
                "position": 1
            },
            {
                "token": "qx",
                "start_offset": 0,
                "end_offset": 2,
                "type": "word",
                "position": 2
            },
            {
                "token": "栖霞站长江线14w6号断路器",
                "start_offset": 1,
                "end_offset": 14,
                "type": "word",
                "position": 3
            },
            {
                "token": "qixiazhanzhangjiangxian14w6haoduanluqi",
                "start_offset": 1,
                "end_offset": 14,
                "type": "word",
                "position": 4
            },
            {
                "token": "qxzzjx14w6hdlq",
                "start_offset": 1,
                "end_offset": 14,
                "type": "word",
                "position": 5
            },
            {
                "token": "站",
                "start_offset": 2,
                "end_offset": 3,
                "type": "word",
                "position": 6
            },
            {
                "token": "长江",
                "start_offset": 3,
                "end_offset": 5,
                "type": "word",
                "position": 7
            },
            {
                "token": "zhangjiang",
                "start_offset": 3,
                "end_offset": 5,
                "type": "word",
                "position": 8
            },
            {
                "token": "zj",
                "start_offset": 3,
                "end_offset": 5,
                "type": "word",
                "position": 9
            },
            {
                "token": "线",
                "start_offset": 5,
                "end_offset": 6,
                "type": "word",
                "position": 10
            },
            {
                "token": "14w6",
                "start_offset": 6,
                "end_offset": 10,
                "type": "word",
                "position": 11
            },
            {
                "token": "号",
                "start_offset": 10,
                "end_offset": 11,
                "type": "word",
                "position": 12
            },
            {
                "token": "断路",
                "start_offset": 11,
                "end_offset": 13,
                "type": "word",
                "position": 13
            },
            {
                "token": "duanlu",
                "start_offset": 11,
                "end_offset": 13,
                "type": "word",
                "position": 14
            },
            {
                "token": "dl",
                "start_offset": 11,
                "end_offset": 13,
                "type": "word",
                "position": 15
            },
            {
                "token": "断路器",
                "start_offset": 11,
                "end_offset": 14,
                "type": "word",
                "position": 16
            },
            {
                "token": "duanluqi",
                "start_offset": 11,
                "end_offset": 14,
                "type": "word",
                "position": 17
            },
            {
                "token": "dlq",
                "start_offset": 11,
                "end_offset": 14,
                "type": "word",
                "position": 18
            }
        ]
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137

    3.3 源码编译

    • JDK17idea支持JDK17

    在这里插入图片描述

    • luncene版本与ElasticSearch版本要求一致

    在这里插入图片描述

    • ElasticSearch打包后的分词器与ElasticSearch使用版本一致

    源码地址:https://gitee.com/frank_zxd/elasticsearch-search-analyzer

  • 相关阅读:
    自动驾驶仿真:VTD调用罗技 G923方向盘(Linux环境)
    springboot开启Redis缓存支持
    第五届全国高校计算机能力挑战赛-程序设计挑战赛(C++)
    python实现提取文件名某个字符串并新建文件夹保存,判断两个矩形是否相交或重合
    获取 Excel 单元格的条件格式是否成立及其改变后的属性(如背景颜色)
    Kibana--KQL查询语法的使用
    【数据仓库基础(四)】数据仓库需求:基本需求和数据需求
    使用vue-cli来搭建vue项目
    ubuntu------anaconda和openvino安装
    MySQL事务特性原理
  • 原文地址:https://blog.csdn.net/zxd1435513775/article/details/127870981