1つの記事が複数の投稿の組み合わせである記事のセットがあります。 1つの投稿はESの1つの文書です。 すべての投稿には、postId、articleId、タイムスタンプ、ステータス(簡易版)があります。 記事のステータスは、ログされた同じ記事内の最後の投稿のステータスです。 特定のステータスの記事を照会し、結果としてarticleIdのみを返したいとします。これは、articleIdをグループ化し、タイムスタンプ順に並べ替えて、結果をステータスでフィルタリングする必要があることを意味します。ElasticSearch:アグリゲーションのフィルタリングtop_hits
私はグループ化と発注を管理していますが、最後の部分にちょっと残っています。
我々のデータは、ちょっと次のようになります。私は(例えば)のための情報でarticleIDを求めるクエリを書きたい
articeid latestStatus
1 Success
2 Error
:私はこれを取得、私の現在のクエリで
postid articleId timestamp status
1 1 01.01.2016 00:00:01 Success
2 1 01.01.2016 00:00:03 Success
3 1 01.01.2016 00:00:02 Error
4 2 01.01.2016 00:00:01 Success
5 2 01.01.2016 00:00:03 Error
6 2 01.01.2016 00:00:02 Success
ステータスが「エラー」のすべての記事私は、スクリプトでpost_filterとし、bucket_selectorの両方を使用して試してみました
GET /_search
{
"size": 0,
"aggs": {
"message_status": {
"terms": {
"field": "articleId"
},
"aggs": {
"group_docs": {
"top_hits": {
"size": 1,
"sort": [
{
"processed": {
"order": "desc"
}
}
]
}
}
}
}
}
}
が、それは仕事を得ることはできません。
articeid
2
これは私がこれまでに得たものである: このクエリは返す必要があります。
戻り、この上記のクエリ:
{
"took": 6,
"timed_out": false,
"_shards": {
"total": 5,
"successful": 5,
"failed": 0
},
"hits": {
"total": 6,
"max_score": 0,
"hits": []
},
"aggregations": {
"message_status": {
"doc_count_error_upper_bound": 0,
"sum_other_doc_count": 0,
"buckets": [
{
"key": "1337",
"doc_count": 3,
"group_docs": {
"hits": {
"total": 3,
"max_score": null,
"hits": [
{
"_index": "article",
"_type": "post",
"_id": "3",
"_score": null,
"_source": {
"postId": 3,
"articleId": "1337",
"processed": "2016-10-10T12:47:25.570852+02:00",
"statusId": 6
},
"sort": [
1476096445570
]
}
]
}
}
},
{
"key": "42",
"doc_count": 3,
"group_docs": {
"hits": {
"total": 3,
"max_score": null,
"hits": [
{
"_index": "article",
"_type": "post",
"_id": "6",
"_score": null,
"_source": {
"postId": 6,
"articleId": "42",
"processed": "2016-10-10T13:02:59.399726+02:00",
"statusId": 5
},
"sort": [
1476097379399
]
}
]
}
}
}
]
}
}
}
私は今、実現したいことは、特定のstatusIdにこの応答をフィルタリングすることであり、唯一のarticleIdsを返します。
大変助かりました!
アップデート:ここで
が私のマッピングが
{
"article": {
"mappings": {
"post": {
"properties": {
"articleId": {
"type": "string"
},
"postId": {
"type": "integer"
},
"processed": {
"type": "date",
"format": "strict_date_optional_time||epoch_millis"
},
"statusId": {
"type": "integer"
}
}
}
}
}
}
インデックスのマッピングを共有します – Richa
ソリューションは機能しましたか? – ChintanShah25