我们已将elasticsearch-1.5.2更新为elasticsearch-1.6.2。当尝试基于“Rawlog_hash”搜索数据时,仍有可用于该特定“Rawlog_hash”的数据,没有值得到。但是相同正在使用1.5.2版本。请建议。
这是我的查询
curl -XGET 'http://10.2.1.51:9210/_search?pretty' -d '
{
"size": 10,
"query": {
"filtered": {
"query": {
"match_all": {}
},
"filter": {
"and": {
"filters": [
{
"terms": {
"rawlog_hash": [
1118341815555609300,
5619467649792631000
]
}
}
]
}
}
}
}
}'
输出
{
"took": 40,
"timed_out": false,
"_shards": {
"total": 15,
"successful": 15,
"failed": 0
},
"hits": {
"total": 0,
"max_score": null,
"hits": []
}
}