GET stackoverflow/_search
{
"query": {
"query_string": {
"query": "bell pepper",
"fields": [
"name"
]
}
},
"aggs": {
"variants": {
"terms": {
"field": "variant_id"
},
"aggs": {
"results": {
"top_hits": {
"size": 1
}
}
}
}
}
}
Результат
{
"took" : 4,
"timed_out" : false,
"_shards" : {
"total" : 1,
"successful" : 1,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : {
"value" : 4,
"relation" : "eq"
},
"max_score" : 0.22380026,
"hits" : [
{
"_index" : "stackoverflow",
"_type" : "_doc",
"_id" : "Wt7GrnEBo-Xqbvtw2rIB",
"_score" : 0.22380026,
"_source" : {
"id" : 2843,
"name" : "Yellow Bell pepper",
"variant_id" : 3311
}
},
{
"_index" : "stackoverflow",
"_type" : "_doc",
"_id" : "W97GrnEBo-Xqbvtw9rKy",
"_score" : 0.22380026,
"_source" : {
"id" : 2842,
"name" : "Orange Bell Pepper",
"variant_id" : 3311
}
},
{
"_index" : "stackoverflow",
"_type" : "_doc",
"_id" : "XN7HrnEBo-XqbvtwDbJ2",
"_score" : 0.19908613,
"_source" : {
"id" : 2839,
"name" : "Organic Green Bell Pepper",
"variant_id" : 3312
}
},
{
"_index" : "stackoverflow",
"_type" : "_doc",
"_id" : "Xd7HrnEBo-XqbvtwMrLw",
"_score" : 0.19908613,
"_source" : {
"id" : 2840,
"name" : "Organic Yellow Bell Pepper",
"variant_id" : 3312
}
}
]
},
"aggregations" : {
"variants" : {
"doc_count_error_upper_bound" : 0,
"sum_other_doc_count" : 0,
"buckets" : [
{
"key" : 3311,
"doc_count" : 2,
"results" : {
"hits" : {
"total" : {
"value" : 2,
"relation" : "eq"
},
"max_score" : 0.22380026,
"hits" : [
{
"_index" : "stackoverflow",
"_type" : "_doc",
"_id" : "Wt7GrnEBo-Xqbvtw2rIB",
"_score" : 0.22380026,
"_source" : {
"id" : 2843,
"name" : "Yellow Bell pepper",
"variant_id" : 3311
}
}
]
}
}
},
{
"key" : 3312,
"doc_count" : 2,
"results" : {
"hits" : {
"total" : {
"value" : 2,
"relation" : "eq"
},
"max_score" : 0.19908613,
"hits" : [
{
"_index" : "stackoverflow",
"_type" : "_doc",
"_id" : "XN7HrnEBo-XqbvtwDbJ2",
"_score" : 0.19908613,
"_source" : {
"id" : 2839,
"name" : "Organic Green Bell Pepper",
"variant_id" : 3312
}
}
]
}
}
}
]
}
}
}
Здесь используется filter_path, чтобы исключить шум, и устанавливается размер 0, чтобы не возвращать никаких попаданий, поскольку вы их не будете использовать.
GET stackoverflow/_search?filter_path=aggregations.variants.buckets.results.hits.hits._source
{
"size": 0,
"query": {
"query_string": {
"query": "bell pepper",
"fields": [
"name"
]
}
},
"aggs": {
"variants": {
"terms": {
"field": "variant_id"
},
"aggs": {
"results": {
"top_hits": {
"size": 1
}
}
}
}
}
}
Результат
{
"aggregations" : {
"variants" : {
"buckets" : [
{
"results" : {
"hits" : {
"hits" : [
{
"_source" : {
"id" : 2843,
"name" : "Yellow Bell pepper",
"variant_id" : 3311
}
}
]
}
}
},
{
"results" : {
"hits" : {
"hits" : [
{
"_source" : {
"id" : 2839,
"name" : "Organic Green Bell Pepper",
"variant_id" : 3312
}
}
]
}
}
}
]
}
}
}