btw. I forgot to add I'm using elasticsearch 1.0.1

Norbert

Am 22.03.2014 um 17:28 schrieb Norbert Hartl <norbert.ha...@googlemail.com>:

> 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 elasticsearch+unsubscr...@googlegroups.com.
> 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.

-- 
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 elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/A583FCC2-C912-4DC5-ABDD-C2540CBAFA28%40googlemail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to