0
点赞
收藏
分享

微信扫一扫

Field [price] of type [text] is not supported for aggregation [avg]

佃成成成成 2022-09-04 阅读 91


原因:text类型不支持求平均值,改为float

PUT

​​http://localhost:9201/shopping/_mapping​​

{
"properties":{
"title":{
"type": "text", // text 文本类型,可以分词
"index": true
},
"category": {
"type":"text", // keyword 关键词,必须是完整的,不能分词
"index": true
},
"images": {
"type": "text",
"index": true
},
"price":{
"type":"float",
"index":true
}
}
}

举报

相关推荐

0 条评论