liuxiaolong
2019-05-06 a7bed6b4cfecd61ec153818945f982c5bb796b98
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
  "query": {
    "bool": {
      "filter": [{
        "range": {
          "picDate": {
            "from": "now+8h/d",
            "to": "now+1d+8h/d"
          }
        }
      },videoReqFilter]
    }
  },
  "size": 0,
  "aggs": {
    "aggs_bucket": {
      "terms": {
        "size": 10000,
        "field": "personId"
      },
      "aggs": {
        "top_max_hits": {
          "top_hits": {
            "sort": [{
              "picDate": {
                "order": "desc"
              }
            }],
            "_source": {
              "includes": [
                "picDate",
                "indeviceid",
                "picAddress"
              ]
            },
            "size": 1
          }
        },
        "top_min_hits": {
          "top_hits": {
            "sort": [{
              "picDate": {
                "order": "asc"
              }
            }],
            "_source": {
              "includes": [
                "picDate",
                "indeviceid",
                "picAddress"
              ]
            },
            "size": 1
          }
        }
      }
    }
  }
}