ElasticSearch增加索引字段
PUT xxx_index-000009/_mapping/_doc?include_type_name=true
{
"properties":{
"xxx.pic_url":{
"type": "keyword"
}
}
}
查看索引字段
GET xxx_index-000009/_mapping
{
}
PUT xxx_index-000009/_mapping/_doc?include_type_name=true
{
"properties":{
"xxx.pic_url":{
"type": "keyword"
}
}
}
查看索引字段
GET xxx_index-000009/_mapping
{
}