当前位置: 首页 > 知识库问答 >
问题:

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

卜鹏
2023-03-14

我是Elasticsearch的新手。我尝试了堆栈溢出和其他网站上提供的不同解决方案,但它们对我不起作用,这就是为什么我发布这个问题。

我正在尝试添加标记器“:“uax\u url\u email”,以便我可以轻松地使用查询搜索电子邮件。

但是,当我设置映射时,弹性搜索给了我以下错误:

根映射定义有不受支持的参数(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"}
                }
            }
        }
    }

共有1个答案

酆奇文
2023-03-14

(代表评论者发表)。

请使用http://localhost:9200/users,然后它会工作。

 类似资料: