Re: Solr Atomic Updates by Query

2015-06-04 Thread Ксения Баталова
Oh, I see. May be it's not such a good idea.) Thanks. _ _ Batalova Kseniya Not to my knowledge. In Solr terms this would be a _very_ heavyweight operation, potentially re-indexing millions and millions of documents. Imagine if your q were id:* for instance. Plus routing that to all shards and

Re: Solr Atomic Updates by Query

2015-06-04 Thread Erick Erickson
Not to my knowledge. In Solr terms this would be a _very_ heavyweight operation, potentially re-indexing millions and millions of documents. Imagine if your q were id:* for instance. Plus routing that to all shards and dealing with other updates coming in would be a nightmare. Best, Erick On Thu,

Re: Solr Atomic Updates by Query

2015-06-04 Thread Ксения Баталова
Is it planned soon? Or may be not soon.. _ _ _ Batalova Kseniya There is no equivalent of, say a SQL update...where... so no, atomic updates by query... Best, Erick On Thu, Jun 4, 2015 at 2:49 AM, Ксения Баталова wrote: > Hi! > > I have one more question about atomic updates in Solr (Solr 4

Re: Solr Atomic Updates by Query

2015-06-04 Thread Erick Erickson
There is no equivalent of, say a SQL update...where... so no, atomic updates by query... Best, Erick On Thu, Jun 4, 2015 at 2:49 AM, Ксения Баталова wrote: > Hi! > > I have one more question about atomic updates in Solr (Solr 4.4.0). > Is it posible to generate atomic update by query? > I mean I

Solr Atomic Updates by Query

2015-06-04 Thread Ксения Баталова
Hi! I have one more question about atomic updates in Solr (Solr 4.4.0). Is it posible to generate atomic update by query? I mean I want to update those documents in which IDs contain some string. For example, index has: Doc1, id="123|a,b" Doc2, id="123|a,c" Doc3, id="345|a,b" Doc4, id="345|a,c,d".