RE: Migration from lucene 4.7 to lucene 6.2.1 (4->5 and 5->6 iteratively) => numerics fields are not indexed anymore

2016-09-25 Thread Ludovic Bertin
Copy that :) Thanks for the confirmation. Ludovic -Original Message- From: Michael McCandless [mailto:luc...@mikemccandless.com] Sent: vendredi, 23. septembre 2016 20:51 To: Ludovic Bertin Cc: Lucene Users Subject: Re: Migration from lucene 4.7 to lucene 6.2.1 (4->5 and 5->6 iteratively)

Re: Handling multiple locale

2016-09-25 Thread lukes
1 more question :). Are numbers analyzed ? Like IntField, LongField, etc. ? Regards. -- View this message in context: http://lucene.472066.n3.nabble.com/Handling-multiple-locale-tp4297805p4297949.html Sent from the Lucene - Java Users mailing list archive at Nabble.com. --

Re: Handling multiple locale

2016-09-25 Thread lukes
Hi Michael, Thanks for the reply. Yeah, that's one brute force way of doing it. But then one has to find all the locales in the system. Is there any other way ? Regards. -- View this message in context: http://lucene.472066.n3.nabble.com/Handling-multiple-locale-tp4297805p4297948.html Sent f

Re: Handling multiple locale

2016-09-25 Thread Michael Wilkowski
Hi, please explain I get it correctly: do you want to search your query within all possible locales? If yes then my personal pattern in such case would be to create multiple BooleanClause (with Occur.SHOULD, one clause per each locale) and add them to one BooleanQuery. MW On Sun, Sep 25, 2016 at

Re: lucene index program won't start after power failure

2016-09-25 Thread Michael McCandless
It is in theory possible to reconstruct a segments file by ls-ing all other index files and manually rebuilding it but it is not an easy task and it would have to make some guesses. I think in the past a user did manage to create such a tool and maybe posted the results here either on this list or

Re: Handling multiple locale

2016-09-25 Thread lukes
Hi all, Any suggestions from the experts ? I assume, this problem is not coming for the first time. Regards. -- View this message in context: http://lucene.472066.n3.nabble.com/Handling-multiple-locale-tp4297805p4297927.html Sent from the Lucene - Java Users mailing list archive at Nabb

Re: Duplicate filtering

2016-09-25 Thread Vjeran Marcinko
Thanx, but I'm not looking at de-deplication while adding documents, but de-duplication while querying. There is DuplicateFilter in contrib lib, but filters are not used anymore in newer Lucene versions, so no luck there... :( I assume I would maybe ned to implement my own Collector, but it s

suggestion for Lucene/Apache team

2016-09-25 Thread Cristian Lorenzetto
Lucene changed web applications in the last years. I created a bit revolution in many real commercial services. A lot of applications, services, servers based on lucene are born in the last years. The reason is simple. The modularity is the key for the computer science fast evolution. It permitted

Re: lucene index program won't start after power failure

2016-09-25 Thread Ziming Dong
sorry to resend. I'll change IO to local. Is there anyway to recover first index? now it can not be opened by checkIndex, we are building index of 7 billion webpages, it costs much time to rebuild. On Sun, Sep 25, 2016 at 5:31 PM, Ziming Dong wrote: > I'll change IO to local. Is there anyway to

Re: lucene index program won't start after power failure

2016-09-25 Thread Ziming Dong
I'll change IO to local. Is there anyway to recover first index? now it can be opened by checkIndex, we are building index of 7 billion webpages, it costs much time to rebuild. On Sat, Sep 24, 2016 at 2:54 AM, Michael McCandless < luc...@mikemccandless.com> wrote: > The 'sync' option for an NFS c