Re: [JENKINS] Lucene ยป Lucene-Coverage-main - Build # 500 - Unstable!

2022-08-19 Thread Michael Sokolov
This test asserts that we return the same documents in the same order when the index is sorted and when it's not, but failed because the scores for two documents were equal, and they end up sorting differently due to docid tiebreaking, which is *not* the same under a sorted index. Not sure what

[jira] [Created] (PYLUCENE-65) Support the default java on debian in `setup.py`.

2022-08-19 Thread A. Coady (Jira)
A. Coady created PYLUCENE-65: Summary: Support the default java on debian in `setup.py`. Key: PYLUCENE-65 URL: https://issues.apache.org/jira/browse/PYLUCENE-65 Project: PyLucene Issue Type:

Re: Boolean query regression after migrating from Lucene 8.5 to 9.2

2022-08-19 Thread Robert Muir
On Thu, Aug 18, 2022 at 1:47 PM Alexander Lukyanchikov wrote: > > Currently we are trying to avoid switching to MMAP because there is another > process running on the same host and extensively utilizes the FS cache. > This makes no sense, NIOFSDirectory uses the FS cache the exact same way as

Re: Boolean query regression after migrating from Lucene 8.5 to 9.2

2022-08-19 Thread Dawid Weiss
Hi Alex, If you're using NIOFSDirectory then indeed there will be a lot of kernel calls (seeks over the off-heap fst). I'm not sure anything can be done about it. mmap seems to be just about the only option that comes to my mind as then the cost is shifted to the kernel (and data is cached/