Adrien Grand
Adrien Grand
That makes sense to me. I wonder if we actually need to revert the advice back to normal in the end, or if we can optimistically assume that it's unlikely...
Optimistically adding this issue to the 10.0 milestone.
I did a first indexing run on wikibigall with the following merge policy, which I tried to make as lightweight as possible: ``` BPIndexReorderer reorderer = new BPIndexReorderer(); reorderer.setMinDocFreq(16384); reorderer.setMaxIters(3);...
> It would somehow disable itself if the application sets its own static index sort? This is correct. This bit already works on the PR, IndexWriter doesn't check the new...
I was just checking out a profile, and with this lightweight BP configuration, we end up spending more time on building the forward index (essentially calling `OfflineSorter` on all postings)...
These sound like great ideas!
As I expect out-of-the-box recursive graph bisection to be a bit controversial, I opened a PR to make it easier to use without making it the default: #13765.
This change is potentially controversial, I'm keen to get opinions.
@rmuir @mikemccand I wonder if you have an opinion on this.
I'm not worried about slowdowns either, time is dominated by slow queries like sloppy phrase queries or faceting queries. I guess that the main downside is losing coverage for the...