views:

57

answers:

1

Running multi-core Solr under Tomcat 6.0 /Win 2008 Server and ASP.NET queries via SolrNet. One of the cores is huge i.e. ~25 million documents (~20 GB disk-space) and several fields. The other 3 cores are much smaller (few gigs each).

After a couple of queries to the large index, Solr slows down dramatically and stops responding i.e. can't even open admin console. If I restart tomcat, things again works ok for a few more queries and then molasses to stop. I have checked the machine RAM and processor usage, both are <50% utilization.

I am not sure what the issue might be - memory leak? How can I go about finding the issue? I don't know much about Solr/Tomcat logs and which logs I should be looking at.

Hope someone can help.

+2  A: 

You'll have to tune the JVM memory allocation with the -Xms and -Xmx settings. See:

Mauricio Scheffer
Ok thanks much!
Mikos