Re: Welcome Luca Cavanna to the Lucene PMC

2023-10-19 Thread Marcus Eagan
Congratulations Luca, well deserved! On Thu, Oct 19, 2023 at 11:02 PM Lu Xugang wrote: > Congratulations Luca ! > > > Xugang > https://www.amazingkoala.com.cn > > > Adrien Grand 于2023年10月20日 周五13:51写道: > >> I'm pleased to announce that Luca Cavanna has accepted an invitation to >> join the Lucen

Re: Welcome Luca Cavanna to the Lucene PMC

2023-10-19 Thread Lu Xugang
Congratulations Luca ! Xugang https://www.amazingkoala.com.cn Adrien Grand 于2023年10月20日 周五13:51写道: > I'm pleased to announce that Luca Cavanna has accepted an invitation to > join the Lucene PMC! > > Congratulations Luca, and welcome aboard! > > > -- > Adrien >

Welcome Luca Cavanna to the Lucene PMC

2023-10-19 Thread Adrien Grand
I'm pleased to announce that Luca Cavanna has accepted an invitation to join the Lucene PMC! Congratulations Luca, and welcome aboard! -- Adrien

Re: Could we allow an IndexInput to read from a still writing IndexOutput?

2023-10-19 Thread Dawid Weiss
I think there is a certain beauty (of tape-backed storage flavor...) in existing abstractions and I wouldn't change them unless absolutely necessary (FST construction isn't the dominant cost in indexing). Also, random seeks all over the place may be really problematic in certain scenarios (as is op

Re: Could we allow an IndexInput to read from a still writing IndexOutput?

2023-10-19 Thread Robert Muir
what will happen on windows? sorry, could not resist. On Thu, Oct 19, 2023 at 9:48 AM Michael McCandless wrote: > > Hi Team, > > Today, Lucene's Directory abstraction does not allow opening an IndexInput on > a file until the file is fully written and closed via IndexOutput. We > enforce this

Could we allow an IndexInput to read from a still writing IndexOutput?

2023-10-19 Thread Michael McCandless
Hi Team, Today, Lucene's Directory abstraction does not allow opening an IndexInput on a file until the file is fully written and closed via IndexOutput. We enforce this in tests, and some of our core Directory implementations demand this (e.g. caching the file's length on opening an IndexInput).