es 按条件查询数据总条数
Posted xiejunna
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了es 按条件查询数据总条数相关的知识,希望对你有一定的参考价值。
语句示例
//请求地址
post
http://eshost:9200/esindex-20220502/_search?
//查询条件:
"query":
"bool":
"must": [
"term":
"trace_type.keyword": "xxxxxx"
,
"term":
"product_type.keyword": "aaaaa"
],
"must_not": [],
"should": []
,
"from": 0,
"size": 0,
"sort": [],
"track_total_hits":true,//开启精确查询,没有此字段,total最大10000条
"aggs":
//响应结果:
"took": 7,
"timed_out": false,
"_shards":
"total": 1,
"successful": 1,
"skipped": 0,
"failed": 0
,
"hits":
"total":
"value": 51297,
"relation": "eq"
,
"max_score": null,
"hits": []
以上是关于es 按条件查询数据总条数的主要内容,如果未能解决你的问题,请参考以下文章
Sql Server中查询数据库所有表及其数据总条数和占用空间