在 Elastic 中搜索多个索引时限制每个索引的大小

Limit the size per index when searching multiple index in Elastic

我一直在遵循 post 中的指导方针。我可以获得所需的输出,但在同一个 DSL 中,我如何限制每个索引的结果大小?

POST http://localhost:9200/componenttypeindex%2Cprojecttypeindex/Componenttype%2CProjecttype/_search?pretty=true&typed_keys=true     
{
  "query": {
    "bool": {
      "should": [
        {
          "bool": {
            "filter": [
              {
                "term": {
                  "_index": {
                    "value": "componenttypeindex"
                  }
                }
              }
            ],
            "must": [
              {
                "multi_match": {
                  "fields": [
                    "Componentname",
                    "Summary^1.1"
                  ],
                  "operator": "or",
                  "query": "test"
                }
              }
            ]
          }
        },
        {
          "bool": {
            "filter": [
              {
                "term": {
                  "_index": {
                    "value": "projecttypeindex"
                  }
                }
              }
            ],
            "must": [
              {
                "multi_match": {
                  "fields": [
                    "Projectname",
                    "Summary^0.3"
                  ],
                  "operator": "or",
                  "query": "test"
                }
              }
            ]
          }
        }
      ]
    }
  }
}

对于给定的查询,您可以使用聚合来分组和限制每个索引的命中数(在本例中,限制为 5):

{
  "size": 0,
  "query": {
    ... Same query as above ...
  },
  "aggs": {
    "index_agg": {
      "terms": {
        "field": "_index",
        "size": 20
      },
      "aggs": {
        "hits_per_index": {
          "top_hits": {
            "size": 5
          }
        }
      }
    }
  }
}