Re: Using copyField with dynamicField

2015-08-25 Thread Scott Dawson
Zach, As an alternative to 'copyField', you might want to consider the CloneFieldUpdateProcessorFactory: http://lucene.apache.org/solr/5_0_0/solr-core/org/apache/solr/update/processor/CloneFieldUpdateProcessorFactory.html It supports specification of field names with regular expressions, exclusion

Re: Collections API - HTTP verbs

2015-02-19 Thread Scott Dawson
Hrishikesh, If you're running on Linux or Unix, the first ampersand in the URL is interpreted as the shell's "run this in the background" operator and anything beyond the ampersand will not be passed to curl. So Mark is right -- put single quotes around the URL so that it's not interpreted by the s

ArrayIndexOutOfBoundsException in RecordingJSONParser.java

2015-04-24 Thread Scott Dawson
rs; } Should I create a JIRA ticket? (Am I allowed to?) I can provide more info about my particular usage including a stacktrace if that's helpful. I'm using the new custom JSON indexing, which, by the way, is an excellent feature and will be of great benefit to my project. Thanks for that. Regards, Scott Dawson

Re: ArrayIndexOutOfBoundsException in RecordingJSONParser.java

2015-04-24 Thread Scott Dawson
Ticket opened: https://issues.apache.org/jira/i#browse/SOLR-7462 Thanks, Scott On Fri, Apr 24, 2015 at 9:38 AM, Shawn Heisey wrote: > On 4/24/2015 7:16 AM, Scott Dawson wrote: > > Should I create a JIRA ticket? (Am I allowed to?) I can provide more > info > > about m

luceneMatchVersion

2015-04-29 Thread Scott Dawson
Hello, In Solr 5.1, I've noticed that luceneMatchVersion is set to 5.0.0 in the sample and any newly generated solrconfig.xml files. Is this an oversight or by design? Any reason I shouldn't bump it to 5.1.0 for new cores I'm creating? Thanks, Scott

Re: luceneMatchVersion

2015-04-29 Thread Scott Dawson
Thanks Shawn. There's a closed JIRA ticket related to this - SOLR-5048 - "fail the build if the example solrconfig.xml files don't have an up to date luceneMatchVersion". Regards, Scott On Wed, Apr 29, 2015 at 12:15 PM, Shawn Heisey wrote: > On 4/29/2015 9:56 AM, Sco

Re: Injecting synonymns into Solr

2015-04-30 Thread Scott Dawson
There is a possible solution here: https://issues.apache.org/jira/browse/LUCENE-2347 (Dump WordNet to SOLR Synonym format). I don't have personal experience with it. I only know about it because it's mentioned on page 184 of the 'Solr in Action' book by Trey Grainger and Timothy Potter. Maybe som

Re: Solr 5.0, Ubuntu 14.04, SOLR_JAVA_MEM problem

2015-05-04 Thread Scott Dawson
Bruno, You have the wrong kind of dash (a long dash) in front of the Xmx flag. Could that be causing a problem? Regards, Scott On Mon, May 4, 2015 at 5:06 AM, Bruno Mannina wrote: > Dear Solr Community, > > I have a recent computer with 8Go RAM, I installed Ubuntu 14.04 and SOLR > 5.0, Java 7 >

Custom JSON

2014-10-16 Thread Scott Dawson
oncept to verify that we can move from our current flat JSON ingestion to a more natural use of structured JSON. Thanks, Scott Dawson

Re: Custom JSON

2014-10-16 Thread Scott Dawson
schemaless the fields are created automatically by solr. > > If you have all the fields created in your schema.xml it will work . > > if you need an id field please use a copy field to create one > > --Noble > > On Thu, Oct 16, 2014 at 8:42 PM, Scott Dawson > wrote: &