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 按条件查询数据总条数的主要内容,如果未能解决你的问题,请参考以下文章

mysql Count 查询记录总条数,效率很慢

mysql Count 查询记录总条数,效率很慢

高速查询hive数据仓库表中的总条数

Sql Server中查询数据库所有表及其数据总条数和占用空间

jquery ajax 调用kkpager插件 异步加载重新生成分页后,点击页数还是跟首次加载一样

hibernate做分页查询