Stop filter changes in Solr >= 4.4

2013-09-12 Thread Christopher Condit
While attempting to upgrade from Solr 4.3.0 to Solr 4.4.0 I ran into this exception: java.lang.IllegalArgumentException: enablePositionIncrements=false is not supported anymore as of Lucene 4.4 as it can create broken token streams which led me to https://issues.apache.org/jira/browse/LUCENE-496

Re: Stop filter changes in Solr >= 4.4

2013-09-13 Thread Christopher Condit
rements=false is deprecated in 4.x but not > removed. It will be removed in 5.0 though. > > On Fri, Sep 13, 2013 at 3:34 AM, Christopher Condit wrote: >> While attempting to upgrade from Solr 4.3.0 to Solr 4.4.0 I ran into >> this exception: >> >> java.lang.Illegal

solrj with multiple cores

2011-10-06 Thread Christopher Condit
I have a Solr 3.4 installation with many cores. Is there a way to use a single SolrServer instance across my requests or is the best practice to create a separate SolrServer instance for each core? It looks as though the option to specify a core for a SolrServer was removed: https://issues.apache.

DIH and splitBy

2013-01-31 Thread Christopher Condit
I'm having an issue getting the splitBy construct from the regex transformer to work in a very basic case (with either Solr 3.6 or 4.1). I have a field defined like this: The entity is defined like this: Here's a POM: http://pastie.org/5992725 A JUnit test case showing the problem: http:/

Re: DIH and splitBy

2013-01-31 Thread Christopher Condit
> runner.update("INSERT INTO test VALUES 1, 'foo,bar,baz'"); > > So you need to decide if you want to delimit with a pipe or a comma. > > James Dyer > Ingram Content Group > (615) 213-4311 > > > -Original Message- > From: Christopher Condit