what is the best way to split an existing Lucene index into two halves i.e. each split should contain half of the total number of documents in the original index
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
The easiest way to split an existing index (without reindexing all the documents) is to:
This is probably not the most efficient way, but it requires very little coding to do. |
||||
|
|
|
A fairly robust mechanism is to use a checksum of the document, modulo the number of indexes, to decide which index it will go into. |
|||
|
|
|
Recent versions of Lucene have a dedicated tool to do this ( |
|||
|
|