Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am facing scalability issues designing a new Solr cluster and I need to master to be able to handle a relatively high rate of updates with almost no reads - they can be done via slaves.

My existing Solr instance is occupying a huge amount of RAM, in fact it started swapping at only 4.5mil docs. I am interested in making the footprint as little as possible in RAM, even if it affects search performance.

So, which Solr config values can I tweak in order to accomplish this?

Thank you.

share|improve this question
try searching or asking on the solr-user mailing list: mail-archives.apache.org/mod_mbox/lucene-solr-user – Mauricio Scheffer Aug 15 '09 at 3:40
I actually cross posted there at the same time as SO. No responses at either places. – Artem Russakovskii Aug 15 '09 at 6:43

1 Answer

up vote 3 down vote accepted

It's hard to say without knowing the specifics of your enviroment (like the schema, custom indexers, queryfunctions etc...) and whats a huge amount of ram? but you could start by

setting filterCache, queryResultCache and documentCache to 0 in solrconfig.xml. This will severely impact the performance of queries executed in SOLR.

set compression to true TextField and StrField types that you store. Then set compressThreshold to a low integer value. This will decrease the size of the documents at the cost of increased CPU usage. (see http://wiki.apache.org/solr/SchemaXml#head-73cdcd26354f1e31c6268b365023f21ee8796613 for more details

turn off all autowarming queries and don't do any read queries

make sure you commit often enough

obviously these are all things to do on the master not on the slaves.

share|improve this answer
Thank you. These are excellent suggestions. The machine running Solr currently is 32bit so the VM doesn't want to start with anything more than 2400m max heap. Solr quickly eats up all of it and commits and optimizes start hitting the Heap out of memory errors. The schema has been slimmed down to almost nothing - about 15 fields, only one of them stored (int) - the rest are just indexed. I will play around with all of your suggestions - they all look spot on. Keep em coming! – Artem Russakovskii Aug 16 '09 at 23:21
I actually don't store any data - just the indexes, in which case compression is not useful, right? – Artem Russakovskii Aug 17 '09 at 21:02
Correct. Are you using special or allot of different analysers? – olle Aug 19 '09 at 23:04
I'm using almost no analyzers. For now. – Artem Russakovskii Aug 28 '09 at 7:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.