-
Enhancement
-
Resolution: Done
-
Major
-
7.0.0.Beta1
-
None
The MassIndexer currently causes a Delete plus and Add operation to hibernate search backend.
Lucene buffers those deletes queries and during merge it tries to 'apply' those deletes wasting a massive amount of time doing seeks and queries unnecessarily.
Since the mass indexer wipes the index at the beginning, it should simply issue an add operation (or at least rely on Lucene atomic IndexWriter.updateDocument). Performance wise this make a huge difference:
- indexing 50k documents brings down the indexing time from 195s to 33s
- indexing 200k documents brings down the indexing time from 600s to 55s
- relates to
-
ISPN-5103 Inefficient index updates cause high cost merges and increase overall latency
- Closed