我做了一个简单的查询
curl -XDELETE 'http://rtparamdev03:9200/_all/_query?pretty=true' -d '
{
"query": {
"constant_score": {
"filter": {
"missing" : { "field" : "path" }
}
}
}
}'
我收到了失败的回复。
{
"ok" : true,
"_indices" : {
"alerts" : {
"_shards" : {
"total" : 5,
"successful" : 0,
"failed" : 5
}
},
"logstash-2014.02.12" : {
"_shards" : {
"total" : 5,
"successful" : 0,
"failed" : 5
}
...
}
我在ElasticSearch日志中看不到任何明显的内容。我看到以下内容,但我认为它根本不相关。
我做了all refresh
并设置了threadpool.index.queue_size=-1
。我仍然得到同样的回应。
有什么建议吗?