gpt4 book ai didi

php - 根映射定义具有不受支持的参数(mapper_parsing_exception)

转载 作者:搜寻专家 更新时间:2023-10-31 21:22:00 25 4
gpt4 key购买 nike

我是 Elasticsearch 的新手。我尝试过 Stack Overflow 和其他网站上提供的不同解决方案,但它们对我不起作用,这就是我发布此问题的原因。

我正在尝试添加 tokenizer": "uax_url_email" 以便我可以轻松地通过查询搜索电子邮件。

但是当我设置映射时,Elastic Search 给我这个错误:

Root mapping definition has unsupported parameters (mapper_parsing_exception)

我曾尝试删除索引并重新创建它,但也无济于事。

我的映射链接。

http://localhost:9200/users/user/_mapping

{
"settings": {
"analysis": {
"analyzer": {
"urls-links-emails": {
"type": "custom",
"tokenizer": "uax_url_email"
}
}
}
},
"mappings":{
"user": {
"properties": {
"id" : {"type": "long"},
"first_name" : {"type": "text"},
"middle_name" : {"type": "text"},
"last_name" : {"type": "text"},
"full_name" : {"type": "text"},
"image" : {"type": "text"},
"email" : {"type": "text", "analyzer": "urls-links-emails"},
"mobile_number" : {"type": "text"},
"profile_image" : {"type": "text"},
"thumbnail" : {"type": "text"},
"role" : {"type": "text"},
"role_id" : {"type": "byte"},
"joined_date" : {"type": "date", "format": "yyyy-MM-dd HH:mm:ss"},
"updated_date" : {"type": "date", "format": "yyyy-MM-dd HH:mm:ss"}
}
}
}
}

最佳答案

(代表评论者发布)

请使用http://localhost:9200/users , 那么它将起作用。

关于php - 根映射定义具有不受支持的参数(mapper_parsing_exception),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45443698/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com