ES聚合查询

ES聚合查询

javascript 复制代码
{
  "query": {
    "bool": {
      "must": [
        {
          "terms": {
            "orderId": [
              "58880570952990",
              "58882596943998",
              "58880654706404"
            ]
          }
        },
        {
          "term": {
            "billType": "110"
          }
        }
      ],
      "must_not": [],
      "should": [],
      "filter": []
    }
  },
    "aggs": {
    "amount": {
      "sum": {
        "field": "amount"
      }
    },
    "orderIdcount": {
      "terms": {
        "field": "orderId",
        "size":300
      }
    }
  },
  "from": 0,
  "size": 1,
  "sort": [],
  "profile": false
}

https://www.cnblogs.com/wangzhuxing/p/9581947.html

javascript 复制代码
{
 "query": {
   "bool": {
     "must": [
       {
         "range": {
           "createTime": {
             "gte": "1629172800000",
             "lte": "1629192600000"
           }
         }
       }
     ],
     "must_not": [],
     "should": [],
     "filter": []
   }
 },
 "track_total_hits":true
}
相关推荐
魔道不误砍柴功1 小时前
Java 中如何巧妙应用 Function 让方法复用性更强
java·开发语言·python
NiNg_1_2341 小时前
SpringBoot整合SpringSecurity实现密码加密解密、登录认证退出功能
java·spring boot·后端
闲晨1 小时前
C++ 继承:代码传承的魔法棒,开启奇幻编程之旅
java·c语言·开发语言·c++·经验分享
测开小菜鸟3 小时前
使用python向钉钉群聊发送消息
java·python·钉钉
Ai 编码助手4 小时前
MySQL中distinct与group by之间的性能进行比较
数据库·mysql
P.H. Infinity4 小时前
【RabbitMQ】04-发送者可靠性
java·rabbitmq·java-rabbitmq
生命几十年3万天4 小时前
java的threadlocal为何内存泄漏
java
陈燚_重生之又为程序员4 小时前
基于梧桐数据库的实时数据分析解决方案
数据库·数据挖掘·数据分析
caridle4 小时前
教程:使用 InterBase Express 访问数据库(五):TIBTransaction
java·数据库·express
白云如幻4 小时前
MySQL排序查询
数据库·mysql