Elasticsearch中的“按查询删除”查询失败

时间:2014-03-05 12:18:39

标签: elasticsearch

我做了一个简单的查询

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。我仍然得到同样的回应。

有什么建议吗?

0 个答案:

没有答案