如何在创建索引期间限制弹性搜索中的总点击

时间:2018-12-14 09:09:13

标签: elasticsearch

我的弹性索引对任何查询的命中次数很多,我如何将对任何查询的命中数限制为30个。

{
    "took": 216,
    "timed_out": false,
    "_shards": {
        "total": 3,
        "successful": 3,
        "skipped": 0,
        "failed": 0
    },
    "hits": {
        "total": 32974167,
        "max_score": null,
        "hits": [
            {

我应该得到这样的输出。

"hits": {
    "total": 29,
    "max_score": null,
    "hits": [
        {

1 个答案:

答案 0 :(得分:0)

为防止> 30次命中,请确保索引中最多包含30个文档。如果要限制返回的文档数,请使用size参数。