1
我有兩個指標:多指數搜索與嵌套字段
首先,questions
,嵌套場answers
。其次,articles
沒有這個字段。
我試圖通過多指標進行搜索:
{
"index": "questions, articles",
"body":{
"query":{
"bool":{
"must":{
"nested":{
"path": "answer",
...
}
}
}
}
}
}
,並得到錯誤"query_parsing_exception: [nested] failed to find nested object under path [answer]"
我怎麼能沒有錯誤搜索,當一個索引嵌套場,但另一個沒有?
Thanx!這是工作! –