最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

运维笔记admin3浏览0评论

原因: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)

  1. 暂无评论