How do I create a solr core with the data from an existing one?
- by steve_d
Solr 1.4 Enterprise Search Server recommends doing large updates on a copy of the core, and then swapping it in for the main core. I am following these steps:
Create prep core: http://localhost:8983/solr/admin/cores?action=CREATE&name=prep&instanceDir=main
Perform index update, then commit/optimize on prep core.
Swap main and prep core: http://localhost:8983/solr/admin/cores?action=SWAP&core=main&other=prep
Unload prep core: http://localhost:8983/solr/admin/cores?action=UNLOAD&core=prep
The problem I am having is, the core created in step 1 doesn't have any data in it. If I am going to do a full index of everything and the kitchen sink, that would be fine, but if I just want to update a (large) subset of the documents - that's obviously not going to work.
(I could merge the cores, but part of what I'm trying to do is get rid of any deleted documents without trying to make a list of them.)
Is there some flag to the CREATE action that I'm missing? The Solr Wiki page for CoreAdmin is a little sparse on details.