先展示数据结构如下:
{ "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" } } } } } } } }
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。