繁体   English   中英

Elasticsearch:空的命中数组,尽管总数大于0

[英]Elasticsearch: empty hits array although total is greater than 0

对于以下查询

    {
        index: i,
        from: 0,
        size: 10,
        body: {
            query: {
                filtered: {
                    query: {
                        term: { "si" : si}
                    }
                }                       
            }
        }               
    }

我得到了以下答案

    {
      "took": 1,
      "timed_out": false,
      "_shards": {
        "total": 1,
        "successful": 1,
        "failed": 0
      },
      "hits": {
        "total": 4,
        "max_score": 5.1108737,
        "hits": [

        ]
      }
    }

我在同一主题https://discuss.elastic.co/t/hits-hits-array-empty-even-thought-total-1/19930中找到了该帖子,但仍然不明白如何解决我的问题,自从我以为

from: 1

会根据他的解决方案解决问题。

谢谢你的帮助

By default, elasticsearch starts showing its  Query results from pageNum as 0 and the search query we define generally start from pageNum as 1.
Ensure that if you are setting the pageNum, it is set to 0 in case you have the resultset within the pageSize limit.

我面临着同样的问题,我可以将total_hits视为1并返回空数组。 我发现我将默认的pageNum设置为1,但是elasticsearch从0开始,因此在将pageNum设为1时返回第二页。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM