0
存在於不同的指數
我有以下查詢查詢基於在Elasticsearch
{
"from":0,
"size":50000,
"_source":[
"T121",
"timestamp"
],
"sort":{
"timestamp":{
"order":"asc"
}
},
"query":{
"bool":{
"must":{
"range":{
"timestamp":{
"gte":"2017-01-17 11:44:41.347",
"lte":"2017-02-18 11:44:47.878"
}
}
},
"must":{
"exists":{
"field":"T121"
}
}
}
}
}
http://172.22.23.169:9200/index1,index2,Index3/_search?pretty
有了這個網址我要查詢過一些在Elasticsearch指數和只返回這些領域其中特定領域存在的文件。
如果在其中一個文檔中存在「field1」或「field2」或「fiedl3」的情況下,我可以在「exists」子句中定義 ,否則不要,或者我有腳本這樣的情況?
非常感謝,我會試試看! –