ES常用命令

mapping映射

  • 更改映射属性--禁止动态增加
{
  "dynamic": "strict"
}
  • 更改映射属性--增加域
{
  "properties" : {
    "tag" : {
      "type" :    "string",
      "index":    "not_analyzed"
    }
  }
}

你可能感兴趣的:(ES常用命令)