Re: PostingsFormat block size

2015-01-28 Thread Trym Møller
Hi Thanks for your input. I do not do updates to the existing docs, so that is not relevant in my case, and I have just skipped that test case :-) I have not been able to measure any significant changes to the distributed searches or just doing a direct search for an id. Did I miss something

Re: PostingsFormat block size

2015-01-27 Thread Mikhail Khludnev
Hm.. It's not blocks which I'm familiar with. Regarding performance impact from bigger ID blocks: if you have ID and sends update for existing docs. And IDs are also used for some of the distributed search stages, I suppose. Here it is. On Tue, Jan 27, 2015 at 4:33 PM, Trym Møller wrote: > Hi >

Re: PostingsFormat block size

2015-01-27 Thread Trym Møller
Hi Thanks for your clarifying questions. In the constructor of the Lucene41PostingsFormat class the minimum and maximum block size is provided. These sizes are used when creating the BlockTreeTermsWriter (responsible for writing the .tim and .tip files of the lucene index). It is the blocksiz

Re: PostingsFormat block size

2015-01-27 Thread Mikhail Khludnev
Hello Trym, Can you clarify, which blockSize do you mean? And the second q, just to avoid unnecessary explanation, do you know what's Pulsing? On Tue, Jan 27, 2015 at 2:28 PM, Trym Møller wrote: > Hi > > I have successfully create a really cool Lucene41x8PostingsFormat class (a > copy of the Lu