千家信息网

elasticsearch嵌套查询聚合数据

发表于:2024-11-18 作者:千家信息网编辑
千家信息网最后更新 2024年11月18日,先展示数据结构如下:{"itemId": "132417862061","site": "US","sellerId": "aaaaa","increamentId": "3753595","ebay
千家信息网最后更新 2024年11月18日elasticsearch嵌套查询聚合数据

先展示数据结构如下:

{"itemId": "132417862061","site": "US","sellerId": "aaaaa","increamentId": "3753595","ebayTrackList": [        {                "numCount": 0,                "pageView": 1,                "userView": 1,                "amountPaid": 0,                "conversionRate": 0,                "date": "2017-12-15"        },        {                "numCount": 0,                "pageView": 1,                "userView": 1,                "amountPaid": 0,                "conversionRate": 0,                "date": "2017-12-29"        },        {                "numCount": 0,                "pageView": 1,                "userView": 1,                "amountPaid": 0,                "conversionRate": 0,                "date": "2018-02-03"        },        {                "numCount": 0,                "pageView": 1,                "userView": 1,                "amountPaid": 0,                "conversionRate": 0,                "date": "2018-03-12"        },        {                "numCount": 0,                "pageView": 1,                "userView": 1,                "amountPaid": 0,                "conversionRate": 0,                "date": "2018-03-20"        },        {                "numCount": 0,                "pageView": 1,                "userView": 1,                "amountPaid": 0,                "conversionRate": 0,                "date": "2018-03-24"        },        {                "numCount": 0,                "pageView": 2,                "userView": 1,                "amountPaid": 0,                "conversionRate": 0,                "date": "2018-04-01"        },        {                "numCount": 0,                "pageView": 1,                "userView": 1,                "amountPaid": 0,                "conversionRate": 0,                "date": "2018-04-02"        }],"publisher": "2714","title": "MOTOSPEED LED Backlight 87 keys Bluetooth Mechanical Keyboard Red Switches T1W8","sku": ["C5060"],"img": "https://cache.yisu.com/upload/information/20200310/72/153898.jpg?set_id=8800005007","price": 55.05,"status": 1,"currency": "USD","createTime": "1512074612","updateTime": "1522694170","mark": null,"fromCountry": "Shen Zhen","oldSku": null}


目前的需求是假如我要知道2018-04-02,2018-04-03号的pageView之和,很明显需要ebayTrackList.date过滤求和ebayTrackList.pageView字段


语句如下

{        "query":{                "bool" : {                            "must" : [                                    {                                            "term" : {"itemId":"132417862061"}                                    },                                    {                                            "nested" : {                                                    "path" : "ebayTrackList",                                                    "query" : {                                                            "bool" : {                                                                    "must" : [                                                                            { "terms" : {"ebayTrackList.date" : ["2018-04-03","2018-04-02"]} }                                                                    ]                                                            }                                                    }                                            }                                    }                            ]                }        },        "aggs":{                "numTotalCount" : {                        "nested" : {                            "path" : "ebayTrackList"                        },                        "aggs" : {                                "sd_value" : {                                        "filter" : { "terms" : {"ebayTrackList.date" : ["2018-04-03","2018-04-02"]} },                                        "aggs" : {                                                "sum_count" : { "sum" : { "field" : "ebayTrackList.pageView" } }                                        }                                }                        }        }        }}


0