码迷,mamicode.com
首页 > 其他好文 > 详细

es去重查询

时间:2019-04-22 12:36:06      阅读:926      评论:0      收藏:0      [点我收藏+]

标签:imei   keyword   hit   class   ted   rate   ini   mat   key   

{
    "query": {
                "bool": {
                    "must": [
                        {
                            "exists": {
                                "field": "vir_name"
                            }
                        },
                        {
                            "bool": {
                                "should": [
                                    {
                                        "regexp": {
                                            "vir_name.keyword": ".*\\[prv.*"
                                        }
                                    },
                                    {
                                        "regexp": {
                                            "vir_name.keyword": ".*\\[rmt.*"
                                        }
                                    }
                                ],
                                "minimum_should_match": 1
                            }
                        }
                    ],
                    "must_not": [
                        {
                            "match": {
                                "vir_name": "err"
                            }
                        },
                        {
                            "match": {
                                "imei": "err"
                            }
                        }
                    ]
                }
            },
    "aggs": {
                "imei": {
                    "terms": {
                        "field": "imei.keyword",
                        "size": 999
                    },
                    "aggs": {
                        "rated": {
                            "top_hits": {
                                "sort": [
                                    {
                                        "time.keyword": {
                                            "order": "desc"
                                        }
                                    }
                                ],
                                "size": 1
                            }
                        }
                    }
                }
            }
}

 

es去重查询

标签:imei   keyword   hit   class   ted   rate   ini   mat   key   

原文地址:https://www.cnblogs.com/paopao123/p/10749293.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!