Re: Lucene migrate to 6.6.5 from 5.5.3

2019-04-03 Thread brahmam
Hi Thank you for your response. Yes moving to 8.0 will be the plan if we plan to re-index. Before we re-index would like to know few details which will help us to decide further on that: In Lucene 6.0 migrate page(https://lucene.apache.org/core/6_0_0/MIGRATE.html) it says "*PointValues replaces

Re: Why does Lucene 7.4.0 commit() Increase Memory Usage x2

2019-04-03 Thread thturk
I have tried Java VisualVM too watch GC status per each commit and relase variables for Reader Writer Searcher. But as result GC working like in photo at below After 16.40 I called GC manully but Heap size didnt

Use "CommonGramsFilterFactory" and "StopFilterFactory" in the query analyzer chain breaks phrase queries

2019-04-03 Thread JiaJun Zhu
Hello, I followed the steps in LUCENE-7698 and found a query on "hello with an accent" get empty result which should get match on the field "features":"Good unicode support: héllo (hello with an accent over the e)" of document (id: SOLR1000). I'm trying to apply "CommonGramsFilterFactory" and "

Re: Lucene migrate to 6.6.5 from 5.5.3

2019-04-03 Thread Adrien Grand
IndexUpgrader would not help, you need to reindex indeed using your own Java program. If you plan to reindex, then you might want to look into going straight to Lucene 8.0 (latest). On Wed, Apr 3, 2019 at 9:04 AM brahmam wrote: > > Hi, > > Thanks for your response. > > Does the IndexUpgrader too

Re: Lucene migrate to 6.6.5 from 5.5.3

2019-04-03 Thread brahmam
Hi, Thanks for your response. Does the IndexUpgrader tool will help in order to re-index using LongPoint ? Or Do we need to create completely new Index using LongPoint by writing a java programme ? Or any other tool or best way to do ? Thank you in Advance! On Tue, Apr 2, 2019 at 6:17 PM Adri