我想计算由于具有大小限制的查询而返回的文档数。例如,我运行以下查询:
curl -XGET http://localhost:9200/logs_-*/a_logs/_search?pretty=true -d '
{
"query" : {
"match_all" : { }
},
"size" : 5,
"from" : 8318
}'
我得到:
{
"took" : 5,
"timed_out" : false,
"_shards" : {
"total" : 159,
"successful" : 159,
"failed" : 0
},
"hits" : {
"total" : 8319,
"max_score" : 1.0,
"hits" : [ {
....
与我的查询匹配的文档总数为 8319,但我最多获取 5 个文档。自从我查询“来自”8318 以来,只返回了 1 个文档。
在响应中,我不知道返回了多少文档。我想编写一个查询,以便返回的文档数也出现在某个字段中。也许某些方面可能会有所帮助,但我无法弄清楚。请帮忙。