我正在尝试执行术语查询
get indexName/test/_search
{
"query": {
"term": {
"stat": "REVIEW"
}
}
}
但它会返回所有内容,即所有记录。另外,当我尝试使用elasticsearch api作为
在python中执行相同的查询时 print qry
result = es.search(index=indexName, body=qry)
total = result['hits'] ['total']
print "Got "+str(total)
我得到了
{'query': {'term': {'stat': 'REVIEW'}}, 'from': 0}
Got 0
这怎么可能?我的语法有问题吗?