Elasticsearch 7 : 自定义 mapping 和

2020-09-10  本文已影响0人  PENG先森_晓宇

ES 7 中在创建索引时指定 Mapping

PUT school
{
  "mappings" : {
    "properties" : {
      "name" : {
        "type" : "keyword"
      }
    }
  }
}

响应:

{
  "acknowledged" : true,
  "shards_acknowledged" : true,
  "index" : "school"
}

然后可以通过GET school查询索引信息。

ES 7 中先建索引,再自定义 mapping

PUT school

建完school索引之后在设置mapping

PUT school/_mapping
{
    "properties" : {
      "name" : {
        "type" : "keyword"
      }
    }
}

ES 7 建索引时指定mapping和settings

比如创建索引时指定分片数和副本数:

PUT school
{
  "mappings" : {
    "properties" : {
      "name" : {
        "type" : "keyword"
      }
    }
  },
  "settings" : {
    //  可以去掉index层
    "index" : {
      "number_of_shards" : 1,
      "number_of_replicas" : 2
    }
  }
}

ES 6 中在创建索引时指定 Mapping 和 Setting

因为 ES 7 之前的版本,一个index下支持多个type,所以mappings 下一层要指定 type

PUT school
{
  "mappings" : {
    "student": {
      "properties" : {
        "name" : {
          "type" : "keyword"
        }
      }
    }
  },
  "settings" : {
    "index" : {
      "number_of_shards" : 1,
      "number_of_replicas" : 2
    }
  }
}
上一篇 下一篇

猜你喜欢

热点阅读