es删除字段
POST 索引/_update_by_query
{
"script": "ctx._source.remove('{字段名}')",
"query": {
"bool": {
"must": [
{
"exists": {
"field": "字段名"
}
}
]
}
}
}
POST 索引/_update_by_query
{
"script": "ctx._source.remove('{字段名}')",
"query": {
"bool": {
"must": [
{
"exists": {
"field": "字段名"
}
}
]
}
}
}