Re: Sharing index data between two Solr instances

2013-05-10 Thread Jason Hellman
l...@innoventsolutions.com] > Gesendet: Freitag, 10. Mai 2013 17:30 > An: solr-user@lucene.apache.org > Betreff: Re: Sharing index data between two Solr instances > > Milen, > > At some point you'll need to call a commit to search your data, either via > AutoCommit po

Re: Sharing index data between two Solr instances

2013-05-10 Thread Peter Sturge
Hello Milen, We do something very similar to this, except we use separate processes on the same machine for the writer and reader. We do this so we can tune caches etc. to optimize for each, and still use the same index files. On MP machines, this works very well. If you've got 2 separate machines

Re: Sharing index data between two Solr instances

2013-05-10 Thread Jason Hellman
Milen, At some point you'll need to call a commit to search your data, either via AutoCommit policy or deterministically. There are various schools of though on which way to go but something needs to do this. If you go the AutoCommit route be sure to pay attention to the openSearcher value.