RE: Indexing documents with ContentStreamUpdateRequest (SolrJ) asynchronously

2014-08-30 Thread Tomer Levi
Hi Jorge, In my indexing code I've created the following Callable class: public class IndexerThread implements Callable< UpdateResponse > { private SolrServer solrServer; private Collection documentsToIndex; public IndexerThread(SolrServer solr, Collection documentsToIndex){

Re: 4.10 ?

2014-08-30 Thread Shawn Heisey
On 8/30/2014 8:14 PM, William Bell wrote: > I know it was just approved the Rc1 for 4.10, but when it is going to be > pushed out? > > Waiting on pins and needles :) For anyone who doesn't watch the dev list: If nobody gives a -1, the vote passes after 72 hours. The last vote was on RC2, starte

Re: Schema API synchronization question

2014-08-30 Thread Erick Erickson
There have been some recent improvements in that area, what version of Solr are you running? Is there any chance you could try with 4.10 when the final version is released? Or perhaps checkout/build the 4.10 release candidate? See, for instance, https://issues.apache.org/jira/browse/SOLR-6137 Sti

4.10 ?

2014-08-30 Thread William Bell
I know it was just approved the Rc1 for 4.10, but when it is going to be pushed out? Waiting on pins and needles :) -- Bill Bell billnb...@gmail.com cell 720-256-8076

Schema API synchronization question

2014-08-30 Thread Matthias Broecheler
Hello everybody, from reading the documentation it is not entirely clear what the synchronization behavior of Solr's schema API is. We are seeing some reliability issues in a multi-machine SolrCloud setup. Granted, being new we might be doing something wrong, but at this point I am confused as to

Re: CopyField Wildcard Exception possible?

2014-08-30 Thread O. Olson
Thank you Ahmet. I am not familiar with using the ScriptUpdateProcessor, but I would look into it. I am also not sure how bad this would be on the import performance. O. O. -- View this message in context: http://lucene.472066.n3.nabble.com/CopyField-Wildcard-Exception-possible-tp4155686p415600

Re: Announcing "Splainer" -- Open Source Solr Sandbox

2014-08-30 Thread Doug Turnbull
Jacques, Does this documentation help? Am I missing anything? http://splainer.io/help.html Cheers -Doug On Wed, Aug 27, 2014 at 9:23 AM, Jacques du Rand wrote: > ANY documentation as to how to setup this thing ? > > > From: Doug Turnbull [dturnb...@ope

Re: solr result handler??

2014-08-30 Thread Jack Krupansky
You can specify a filter query that has "must not" terms. For example: fq=*:* field1:(-shoot -darn -rats) field2:(-shoot -darn -rats) or fq=*:* field1:(-shoot -darn -rats) fq=*:* field2:(-shoot -darn -rats) Ypu could specify edismax for the filter query parser and list the fields in the qf pa