solrcloud without realtime

2012-09-24 Thread Radim Kolar
its possible to use solrcloud but without real-time features? In my 
application I do not need realtime features and old style processing 
should be more efficient.


Re: solrcloud without realtime

2012-09-24 Thread Erick Erickson
I'm pretty sure all you need to do is disable autoSoftCommit. Or rather
don't un-comment it from solrconfig.xml

Best
Erick

On Mon, Sep 24, 2012 at 5:44 AM, Radim Kolar h...@filez.com wrote:
 its possible to use solrcloud but without real-time features? In my
 application I do not need realtime features and old style processing should
 be more efficient.


Re: solrcloud without realtime

2012-09-24 Thread Radim Kolar

Dne 24.9.2012 14:05, Erick Erickson napsal(a):

I'm pretty sure all you need to do is disable autoSoftCommit. Or rather
don't un-comment it from solrconfig.xml
and what about solr.NRTCachingDirectoryFactory? Is 
solr.MMapDirectoryFactory faster if there is no NRT search requirements?


Re: solrcloud without realtime

2012-09-24 Thread Mark Miller
On Mon, Sep 24, 2012 at 9:21 AM, Radim Kolar h...@filez.com wrote:

 and what about solr.NRTCachingDirectoryFactory? Is solr.MMapDirectoryFactory
 faster if there is no NRT search requirements?

NRTCachingDirectoryFactory is a wrapping directory - it's generally
going to use solr.MMapDirectoryFactory as it's delegate anyhow.

It should not hurt performance if you are not using NRT though.

-- 
- Mark