On Tue, Dec 22, 2009 at 9:30 AM, Ryan Kennedy <rcken...@gmail.com> wrote: > I'm trying to automate setting up new slave instances. I've noticed > when I use the core admin to bring a new slave core online that the > slave won't replicate the master index. The issue appears to be that > when the slave core is created, it's given a new (empty) index with a > newer timestamp than the master index timestamp. When the master > finally reindexes, only then does the slave replicate.
Figured it out, I needed to add "startup" to the "replicateAfter" for this particular use case (I had tried adding the new core after restarting the master): <str name="replicateAfter">startup</str> Ryan