我们有一个文本字段,其中包含带有姓名首字母的人名,这些姓名首字母不一致(有些地方用空格/点分隔,有些地方不用)。
例如:- G.J.拉贾,G。 J.拉贾,GJ 拉贾,GJ 拉贾...
我尝试了以下解决方案,但无法获得预期的解决方案
做第三个例子(GJ Raja)
(它有超过 100 000 条记录)
内联映射和索引中每次都有许多记录。
输入:- G J Raja
输出:- G.J.拉贾,G。 J.拉贾,GJ 拉贾,G J 拉贾
最佳答案
使用 pattern_replace
token filter ,您可以实现您想要的。以下名为 initial_analyzer
的分析器将清理您的名称并确保所有名称都转换为 GJ Raja
PUT test
{
"settings": {
"index": {
"analysis": {
"analyzer": {
"initial_analyzer": {
"type": "custom",
"tokenizer": "keyword",
"filter": [
"initials"
]
}
},
"filter": {
"initials": {
"type": "pattern_replace",
"pattern": """[\.\s]*([A-Z])[\.\s]*([A-Z])[\.\s]*(\w+)""",
"replacement": "$1$2 $3"
}
}
}
}
},
"mappings": {
"properties": {
"name": {
"type": "text",
"analyzer": "initial_analyzer"
}
}
}
}
然后我们可以索引一些文档
PUT test/_bulk
{"index": {}}
{"name": "G.J. Raja"}
{"index":{}}
{"name":"G . J . Raja"}
{"index": {}}
{"name":"GJ Raja"}
{"index":{}}
{"name":"G J Raja"}
最后,以下查询将找到所有四个不同的名称(以及其他变体)。您也可以搜索
G. J. Raja
或 G. J Raja
,所有四个文档都会匹配:POST test/_search
{
"query": {
"match": {
"name": "G J Raja"
}
}
}
结果:
{
"took" : 4,
"timed_out" : false,
"_shards" : {
"total" : 5,
"successful" : 5,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : 4,
"max_score" : 0.18232156,
"hits" : [
{
"_index" : "test",
"_type" : "doc",
"_id" : "Z7pF7WwBvUQmOB95si05",
"_score" : 0.18232156,
"_source" : {
"name" : "G . J . Raja"
}
},
{
"_index" : "test",
"_type" : "doc",
"_id" : "aLpF7WwBvUQmOB95si05",
"_score" : 0.18232156,
"_source" : {
"name" : "GJ Raja"
}
},
{
"_index" : "test",
"_type" : "doc",
"_id" : "ZrpF7WwBvUQmOB95si05",
"_score" : 0.18232156,
"_source" : {
"name" : "G.J. Raja"
}
},
{
"_index" : "test",
"_type" : "doc",
"_id" : "abpF7WwBvUQmOB95si05",
"_score" : 0.18232156,
"_source" : {
"name" : "G J Raja"
}
}
]
}
}
关于人名的 ElasticSearch 查询问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57712245/