创建弹性搜索查询以按类别显示随机 5 个问题

Create the Elastic search query to show Random 5 Questions by category

我在 Table 中有字段类别和问题。

我的要求是针对下面提到的 3 个类别,我需要通过编写弹性搜索查询标记的问题(所以我想要查询中的“类别”和“问题”字段)

类别:

OLA

BNA

DRG

获取logstash-sdc-feedback/_search? { "_source":["Category.keyword"], "size": 5, "query":{ "bool": { "must": [ {"match":{"Category.keyword"" : "OLA","BNA","DRG"}}

],

} }, "aggs": { "MyBuckets": { "terms": { "field": "questions.keyword","Category.keyword" "order":{ "_count": "asc" }, “尺寸”:“5”

} } } }

您可以使用 terms query along with terms aggregation 来实现您的用例。

添加一个工作示例

索引数据:

{
  "category": "XYZ",
  "question": "d"
}
{
  "category": "OLA",
  "question": "a"
}
{
  "category": "BNA",
  "question": "b"
}
{
  "category": "DRG",
  "question": "c"
}

搜索查询:

{
  "query": {
    "bool": {
      "must": {
        "terms": {
          "category.keyword": [
            "OLA",
            "BNA",
            "DRG"
          ]
        }
      }
    }
  },
  "aggs": {
    "top_tags": {
      "terms": {
        "field": "category.keyword"
      },
      "aggs": {
        "top_faq_hits": {
          "top_hits": {
            "_source": {
              "includes": [
                "question"
              ]
            },
            "size": 1
          }
        }
      }
    }
  }
}

搜索结果:

"aggregations": {
    "top_tags": {
      "doc_count_error_upper_bound": 0,
      "sum_other_doc_count": 0,
      "buckets": [
        {
          "key": "BNA",                 // note this
          "doc_count": 1,
          "top_faq_hits": {
            "hits": {
              "total": {
                "value": 1,
                "relation": "eq"
              },
              "max_score": 1.0,
              "hits": [
                {
                  "_index": "65566020",
                  "_type": "_doc",
                  "_id": "2",
                  "_score": 1.0,
                  "_source": {
                    "question": "b"            // note this
                  }
                }
              ]
            }
          }
        },
        {
          "key": "DRG",
          "doc_count": 1,
          "top_faq_hits": {
            "hits": {
              "total": {
                "value": 1,
                "relation": "eq"
              },
              "max_score": 1.0,
              "hits": [
                {
                  "_index": "65566020",
                  "_type": "_doc",
                  "_id": "3",
                  "_score": 1.0,
                  "_source": {
                    "question": "c"
                  }
                }
              ]
            }
          }
        },
        {
          "key": "OLA",
          "doc_count": 1,
          "top_faq_hits": {
            "hits": {
              "total": {
                "value": 1,
                "relation": "eq"
              },
              "max_score": 1.0,
              "hits": [
                {
                  "_index": "65566020",
                  "_type": "_doc",
                  "_id": "1",
                  "_score": 1.0,
                  "_source": {
                    "question": "a"
                  }
                }
              ]
            }
          }
        }
      ]
    }
  }