I have a Solr index 1.4 whose size is more than 20 GB. I would like to split it in 2 or 3 indexes.
Lucene 3.3 has the function PKIndexSplitter but it is not working with a Solr 1.4 index.
Is it possible to split a Solr index 1.4 ?
Thanks for help
Medley
No there is no “method” in Solr 1.4 to do that. What you need to do is make two copies of the index. In each copy, delete records. Then optimize.
Then you can do a DistributedSearch over both indexes.
Hope it helps.