次のマッピングがあります。
{
"dynamic": "strict",
"properties": {
"id": {
"type": "string"
},
"title": {
"type": "string"
},
"things": {
"type": "nested",
"properties": {
"id": {
"type": "long"
},
"something": {
"type": "long"
}
}
}
}
}
次のようにドキュメントを挿入します (Python スクリプト):
body = {"id": 1, "title": "one", "things": [{"id": 1000, "something": 33}, {"id": 1001, "something": 34}, ]}
es.create(index_name, doc_type=doc_type, body=body, id=1)
body = {"id": 2, "title": "two", "things": [{"id": 1000, "something": 43}, {"id": 1001, "something": 44}, ]}
es.create(index_name, doc_type=doc_type, body=body, id=2)
body = {"id": 3, "title": "three", "things": [{"id": 1000, "something": 53}, {"id": 1001, "something": 54}, ]}
es.create(index_name, doc_type=doc_type, body=body, id=3)
次の集計クエリを実行します。
{
"query": {
"match_all": {}
},
"aggs": {
"things": {
"aggs": {
"num_articles": {
"terms": {
"field": "things.id",
"size": 0
},
"aggs": {
"articles": {
"top_hits": {
"size": 50
}
}
}
}
},
"nested": {
"path": "things"
}
}
},
"size": 0
}
(そのため、各「もの」が表示される回数のカウントが必要であり、各ものに対して、各ものが表示される記事のリストが必要です)
クエリは次を生成します。
"key": 1000,
"doc_count": 3,
"articles": {
"hits": {
"total": 3,
"max_score": 1,
"hits": [{
"_index": "test",
"_type": "article",
"_id": "2",
"_nested": {
"field": "things",
"offset": 0
},
"_score": 1,
"_source": {
"id": 1000,
"something": 43
}
}, {
"_index": "test",
"_type": "article",
"_id": "1",
"_nested": {
"field": "things",
"offset": 0
},
"_score": 1,
"_source": {
"id": 1000,
"something": 33
}
.... (等々)
私が望むのは、ヒットごとに「外側」またはトップレベルのドキュメントのすべてのフィールド、つまりこの場合は id と title をリストすることです。
これは実際に可能ですか ..... もしそうならどのように ???