Re: Lucene Migration issue

2020-06-08 Thread Michael McCandless
You're welcome! Mike McCandless http://blog.mikemccandless.com On Mon, Jun 8, 2020 at 10:48 AM Adarsh Sunilkumar < adarshsunilkuma...@gmail.com> wrote: > Hi Michael, > > Thanks for your information. > > > Thanks&Regards, > Adarsh Sunilkumar > > On Mon, Jun 8, 2020, 20:15 Michael McCandless >

Re: Lucene Migration issue

2020-06-08 Thread Adarsh Sunilkumar
Hi Michael, Thanks for your information. Thanks&Regards, Adarsh Sunilkumar On Mon, Jun 8, 2020, 20:15 Michael McCandless wrote: > Ahh, yes is does! That is the change that made Lucene catch this mis-use, > whereas previously it would silently throw things away (term frequencies > and positio

Re: Lucene Migration issue

2020-06-08 Thread Michael McCandless
Ahh, yes is does! That is the change that made Lucene catch this mis-use, whereas previously it would silently throw things away (term frequencies and positions). If you want to simply continue throwing things away like Lucene did before, without rebuilding your index, switch your indexing to Ind

Re: Lucene Migration issue

2020-06-07 Thread Adarsh Sunilkumar
Hi Michael, Thanks for the information. Does the error has any relationship with this patch ttps://issues.apache.org/jira/browse/LUCENE-8134 Thanks& Regards, Adarsh Sunilkumar On Fri, Jun 5, 2020 at 7:28 PM Michael McCandless wrote: > This ju

Re: Lucene Migration issue

2020-06-05 Thread Michael McCandless
This just means you previously indexed only docis (skipping term frequencies, positions) for at least one of the fields in at least one document in your existing index. But now you are trying to also index with term frequencies and positions, which Lucene cannot do. You either have to reindex wit

Lucene Migration issue

2020-06-05 Thread Adarsh Sunilkumar
Hi team, I am getting this error when I have tried migrating from lucene 7.3 to 8.5.1 cannot change field "abc" from index options=DOCS to inconsistent index options=DOCS_AND_FREQS_AND_POSITIONS can I know the issue ? what should I change ? thanks in advance. Thanks&Regards, Adarsh Sunilkumar