【ElasticSearch】ES线上脏数据处理

 

ES分组

GET index_user_latest/_search
{
    "aggs": {
        "group_by_tags": {  
            "terms": {
                "field": "telNum",
                "size": 10
            }
        }
    }
}

多条件查询

GET index_user_latest/_search
{
  "query": {
    "bool": {
      "must": [
        {
          "match": {
            "telNum": "13277040656"
          }
        }
      ],
      "must_not": [
        {
          "match": {
            "userId": 146540743
          }
        }
      ]
    }
}
}

条件删除

POST index_user_latest/_delete_by_query
{
  "query": {
    "bool": {
      "must": [
        {
          "match": {
            "isDelete": true
          }
        }
      ]
    }
}
}

 

posted @ 2021-03-09 16:31  听风是雨  阅读(637)  评论(0)    收藏  举报
/* 看板娘 */