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
          }
        }
      ]
    }
}
}

 

相关文章: