我可以缩小Elastic Search _stats得到的结果吗?

时间:2015-08-18 18:58:55

标签: elasticsearch elasticsearch-indices

我正在使用弹性搜索我正在进行的项目,我想知道是否有办法缩小我从指数统计搜索得到的结果。 https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html

我目前使用docs来缩小我收到的有关索引的数据,但现在我只想找回文件数大于0的数据。有人知道这是否可行或如何?

谢谢!

弹性搜索1.5.2

1 个答案:

答案 0 :(得分:1)

如果您关注响应的大小(即如果您有许多具有多个分片的索引),那么您可以做的最好的事情就是使用response filtering(仅在ES 1.7之后可用)且仅检索您可以在客户端进一步过滤的docs字段:

curl 'localhost:9200/_stats/docs?pretty&filter_path=**.docs.count'