美文网首页
ElasticSearch为已存在的索引新增字段

ElasticSearch为已存在的索引新增字段

作者: kakou233 | 来源:发表于2021-03-26 19:41 被阅读0次

    PUT keywords_index/_mapping

    {

        "properties": {

        "kakou": {

            "type": "keyword",

          "fields": {

                "raw": {//别名--用于比较大小,

                    "type": "integer"

            }

    }

    }

    }

    }

    相关文章

      网友评论

          本文标题:ElasticSearch为已存在的索引新增字段

          本文链接:https://www.haomeiwen.com/subject/igrshltx.html