Re: Can I start solr with replication activated but disabled between master and slave

2013-01-31 Thread Erick Erickson
You can also do all this via HTTP commands, see: http://wiki.apache.org/solr/SolrReplication#HTTP_API that allows you to control _all_ replication from the master (i.e. tell the master don't to any replication) or just tell a slave don't replicate any more as well as a lot of other stuff. Best

Can I start solr with replication activated but disabled between master and slave

2013-01-30 Thread Jamel ESSOUSSI
Hello, I would like to start solr with the following configuration; Replication between master and slave activated but not enabled. Regards -- View this message in context:

RE: Can I start solr with replication activated but disabled between master and slave

2013-01-30 Thread Petersen, Robert
Hi Jamel, You can start solr slaves with them pointed at a master and then turn off replication in the admin replication page. Hope that helps, -Robi Robert (Robi) Petersen Senior Software Engineer Search Department -Original Message- From: Jamel ESSOUSSI

Re: Can I start solr with replication activated but disabled between master and slave

2013-01-30 Thread Arcadius Ahouansou
As stated by Robi, you can through the admin UI: -disable replication on the master through the admin or -disable polling on the slave through the admin UI. Disabling polling on the slaves is very handy if you doing stuff on the master that require master restart as a restart. Thanks.