Hi, I'm trying to delete entries in my indexes that are older than 6 months. I'm using the curl command
curl -vv -XDELETE http://localhost:9200/myindex/_query -d @delete-old.json delete-old.json content: { "query" : { "filtered" : { "query" : { "match_all" : { } }, "filter" : { "range" : { "timeStamp" : { "lte" : "now-6M" } } } } } } The query does work when doing a search. It does also work if I use "timeStamp" : { "lte" : "2013-09-01T00:00:00+00:00" } So is the date calculation "now-6M" not supposed to work in DELETEs? thanks, norbert -- You received this message because you are subscribed to the Google Groups "elasticsearch" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/ec13a845-aedd-4eb4-b9ca-60eb67c5b773%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
