elasticsearchでの検索方法を教えてほしいです。
下記のようなデータがあります。
testsフィールドには過去のテストが科目コードと点数で保存されています。
今回抽出したいのは条件は
1, 指定期間内にテストした
2,指定科目
3,平均点以上
指定期間内に国語を2回テストしてた場合は2回分の平均にしたいです。
質問
1、一回のクエリで取得できるか?出来る場合そのクエリを教えてほしい。
2、このmappingの構造で実現はできるか?出来ない場合どのようなmappingの作り方をした方がいいのか。
説明不足などありましたら、ご指摘ください。
よろしくお願いいたします。
json
1 2マッピング 3[ 4 { 5 "mappings": { 6 "properties": { 7 "tests": { 8 "type": "nested", 9 "include_in_parent": true 10 } 11 } 12 } 13 } 14] 15 16 17インデックス 18member-index 19[ 20 { 21 "name": "A", 22 "tests": [ 23 { 24 "code": "kokugo", 25 "score": 70, 26 "created_at": "2020/03/03 00:00:00" 27 }, 28 { 29 "code": "kokugo", 30 "score": 30, 31 "created_at": "2020/03/01 00:00:00" 32 }, 33 { 34 "code": "suugaku", 35 "score": 99, 36 "created_at": "2020/03/01 00:00:00" 37 } 38 ] 39 }, 40 { 41 "name": "B", 42 "tests": [ 43 { 44 "code": "kokugo", 45 "score": 90, 46 "created_at": "2020/03/03 00:00:00" 47 }, 48 { 49 "code": "kokugo", 50 "score": 50, 51 "created_at": "2020/03/01 00:00:00" 52 }, 53 { 54 "code": "suugaku", 55 "score": 30, 56 "created_at": "2020/03/01 00:00:00" 57 } 58 ] 59 }, 60 { 61 "name": "C", 62 "tests": [ 63 { 64 "code": "kokugo", 65 "score": 30, 66 "created_at": "2020/03/03 00:00:00" 67 }, 68 { 69 "code": "kokugo", 70 "score": 50, 71 "created_at": "2020/03/01 00:00:00" 72 }, 73 { 74 "code": "suugaku", 75 "score": 100, 76 "created_at": "2020/03/01 00:00:00" 77 } 78 ] 79 } 80] 81 82 83
あなたの回答
tips
プレビュー