ElasticSearch7索引管理--映射(基于kibana)

增加映射

创建索引并增加索引映射,请求:

PUT secisland3
{
  "mappings": {
    "properties": {
      "message":{
        "type": "text"
      },
      "city":{
        "type": "keyword"
      }
    }
  }
}

返回:

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

索引已存在,增加映射并新增字段create_time:

请求:

PUT secisland3/_mappings
{
  "properties": {
    "message":{
        "type": "text"
      },
      "city":{
        "type": "keyword"
      },
      "create_time":{
        "type": "date"
      }
  }
}

返回:

{
  "acknowledged" : true
}

获取映射

请求:GET secisland3/_mappings

返回:

{
  "secisland3" : {
    "mappings" : {
      "properties" : {
        "city" : {
          "type" : "keyword"
        },
        "message" : {
          "type" : "text"
        }
      }
    }
  }
}

获取映射字段

请求:GET secisland3/_mapping/field/city

返回:

{
  "secisland3" : {
    "mappings" : {
      "city" : {
        "full_name" : "city",
        "mapping" : {
          "city" : {
            "type" : "keyword"
          }
        }
      }
    }
  }
}

你可能感兴趣的:(elasticsearch)