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

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM