gpt4 book ai didi

rest - 使用其余客户端的PUT映射错误elasticsearch:无法解析映射[_doc]:根映射定义具有不受支持的参数:

转载 作者:行者123 更新时间:2023-12-03 01:13:07 24 4
gpt4 key购买 nike

enter image description here
正如您在附件中看到的那样,我想创建一个名为movie的映射,但是出现以下错误:
解析映射[_doc]失败:根映射定义具有不支持的参数:

{
"mappings": {
"movie":{
"properties": {
"year": {
"type": "date"
}
}
}
}
}
在Elasticearch v 7.8上

最佳答案

您正在尝试使用类型(在您的情况下为movie)创建映射,但是从7.0版开始,映射为typeless,您将无法再使用类型创建映射。
您应该使用以下映射。

{
"mappings": {
"properties": {
"year": {
"type": "date"
}
}
}
}

这将为日期为 yeardate字段创建映射。

关于rest - 使用其余客户端的PUT映射错误elasticsearch:无法解析映射[_doc]:根映射定义具有不受支持的参数:,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63530836/

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