在弹性搜索中删除不起作用

问题描述:

我需要从我的索引中删除符合某些条件的一些文档。 这里是查询:在弹性搜索中删除不起作用

{"query": { 
     "filtered": { 
      "query": { 
      "match_all":{} 
      }, 
      "filter": { 
       "range": { 
        "timestamp": { 
         "gte": "2016-01-01", 
         "lte": "2016-10-31" 
        } 
       } 
      } 
     } 
    } 
    } 

它获取我之间指定日期范围的文件。 How do i delete these documents

使用delete by query API if 5.x或安装delete by query插件如果是2.x.