Re: Upgrading indexes from Solr 1.4.1 to 4.1.0

2013-02-06 Thread Artem OXSEED
It turns out that all our fields are stored and restoring from the source data is a bit of problem. I've tried DIH/SorEntityProcessor and it seems to be working out good, so I'll probably end up using it. Thank you! -- Warm regards, Artem Karpenko On 04.02.2013 19:58, Lance Norskog wrote: A s

Re: Upgrading indexes from Solr 1.4.1 to 4.1.0

2013-02-04 Thread Shawn Heisey
Ahhh. On this system, I am not using SolrCloud. On a separate system that I'm building with SolrCloud, I'm only using it for high availability, not for distributed search. Is there already an issue for a configurable unique field? If not, I can make one. Thanks, Shawn On 2/4/2013 12

Re: Upgrading indexes from Solr 1.4.1 to 4.1.0

2013-02-04 Thread Lance Norskog
I don't have the source handy. I believe that SolrCloud hard-codes 'id' as the field name for defining shards. On 02/04/2013 10:19 AM, Shawn Heisey wrote: On 2/4/2013 10:58 AM, Lance Norskog wrote: A side problem here is text analyzers: the analyzers have changed how they split apart text for

Re: Upgrading indexes from Solr 1.4.1 to 4.1.0

2013-02-04 Thread Shawn Heisey
On 2/4/2013 10:58 AM, Lance Norskog wrote: A side problem here is text analyzers: the analyzers have changed how they split apart text for searching, and are matched pairs. That is, the analyzer queries are created matching what the analyzer did when indexing. If you do this binary upgrade sequen

Re: Upgrading indexes from Solr 1.4.1 to 4.1.0

2013-02-04 Thread Lance Norskog
A side problem here is text analyzers: the analyzers have changed how they split apart text for searching, and are matched pairs. That is, the analyzer queries are created matching what the analyzer did when indexing. If you do this binary upgrade sequence, the indexed data will not match what

Re: Upgrading indexes from Solr 1.4.1 to 4.1.0

2013-02-04 Thread Upayavira
Just to add a little to the good stuff Shawn has shared here - Solr 4.1 does not support 1.4.1 indexes. If you cannot re-index (by far recommended), then first upgrade to 3.6, then optimize your index, which will convert it to 3.6 format. Then you will be able to use that index in 4.1. The simple l

Re: Upgrading indexes from Solr 1.4.1 to 4.1.0

2013-02-04 Thread Shawn Heisey
On 2/4/2013 7:20 AM, Artem OXSEED wrote: I need to upgrade our Solr installation from 1.4.1 to the latest 4.1.0 version. The question is how to deal with indexes. AFAIU there are two things to be aware of: file format and index format (excuse me for possible term mismatch, I'm new to Solr) - and

Upgrading indexes from Solr 1.4.1 to 4.1.0

2013-02-04 Thread Artem OXSEED
Hi, I need to upgrade our Solr installation from 1.4.1 to the latest 4.1.0 version. The question is how to deal with indexes. AFAIU there are two things to be aware of: file format and index format (excuse me for possible term mismatch, I'm new to Solr) - and while file format can (and will a