Re: Deleting by query

2016-02-26 Thread Marc Burt
Thanks Jan, That worked. Kind Regards, Marc On 02/26/2016 01:43 PM, Jan Høydahl wrote: Hi Try this instead /solr/de/update?stream.body=last_seen:[* TO 2016-02-24T00:00:00Z]=true …that is if you have streaming enabled in solrconfig. Else do a POST instead Note that I put a commit=true at

Re: Deleting by query

2016-02-26 Thread Jan Høydahl
Hi Try this instead /solr/de/update?stream.body=last_seen:[* TO 2016-02-24T00:00:00Z]=true …that is if you have streaming enabled in solrconfig. Else do a POST instead Note that I put a commit=true at the end, so you will see the changes immediately. -- Jan Høydahl, search solution architect

Deleting by query

2016-02-26 Thread Marc Burt
Hi, I'm trying to delete by query using the following: /solr/de/update?last_seen:[* TO 2016-02-24T00:00:00.00Z] /solr/de/select?q=last_seen:[* TO 2016-02-24T00:00:00.00Z] returns the correct documents to be deleted. Last time I attempted this using the above I somehow managed to delete

Re: Delays when deleting by query

2011-12-08 Thread Erick Erickson
/commit combo appears to be the source of the problem. Any tips on how to debug this are appreciated! Thanks,Mike From: mgal...@hotmail.com To: solr-user@lucene.apache.org Subject: Delays when deleting by query Date: Tue, 6 Dec 2011 08:25:28 -0500 Hello, We're encountering delays of 10

RE: Delays when deleting by query

2011-12-08 Thread Mike Gallan
: Thu, 8 Dec 2011 08:25:52 -0500 Subject: Re: Delays when deleting by query From: erickerick...@gmail.com To: solr-user@lucene.apache.org Hmmm, this is unusual. Can we see the code you use to delete? And your solrconfig file? You're not doing something odd like optimizing on commit or anything

RE: Delays when deleting by query

2011-12-07 Thread Mike Gallan
to be the source of the problem. Any tips on how to debug this are appreciated! Thanks,Mike From: mgal...@hotmail.com To: solr-user@lucene.apache.org Subject: Delays when deleting by query Date: Tue, 6 Dec 2011 08:25:28 -0500 Hello,   We're encountering delays of 10+ minutes when trying

Delays when deleting by query

2011-12-06 Thread Mike Gallan
Hello, We're encountering delays of 10+ minutes when trying to delete from our Solr 3.4 instance. We have 335k documents indexed and interface using SolrJ. Our schema basically consists of a parent object with multiple child objects. Every object is indexed as a separate document