0
私はそうのように定義されたelasticsearchクエリを実行しようとしています:弾性検索ブールクエリエラー
query = {
"query": {
"bool": {
"should": [
{"term": {"a": "a1"}},
{"term": {"b": "b1"}},
{"term": {"c": "c1"}}
],
},
},
}
es.search("my_index", body=q1)
をしかし、私は次のエラーを取得する:
RequestError: TransportError(400, 'search_phase_execution_exception',
'failed to create query:
...
クエリの問題点は何ですか?