Re: Solr PHP highload search

2012-06-13 Thread Erick Erickson
Consider just looking at it with jconsole (should be in your Java release) to get a sense of the memory usage/collection. How much physical memory do you have overall? Because this is not what I'd expect. Your CPU load is actually reasonably high, so it doesn't look like you're swapping. By and

Re: Solr PHP highload search

2012-06-13 Thread Alexandr Bocharov
Thank you for help :) I'm giving 2048M the JVM for each node. CPU load is jumping 70-90%. Memory usage is increasing to max during testing (probably cache is filling). I/O I didn't monitor. I'd like to see answers on my other questions. 2012/6/13 Erick Erickson > How much memory are you giving

Re: Solr PHP highload search

2012-06-13 Thread Erick Erickson
How much memory are you giving the JVM? Have you put a performance monitor on the running process to see what resources have been exhausted (i.e. are you I/O bound? CPU bound?) Best Erick On Tue, Jun 12, 2012 at 3:40 AM, Alexandr Bocharov wrote: > Hi, all. > > I need advice for configuring Solr

Re: Solr PHP highload search

2012-06-12 Thread Jack Krupansky
Add "&debugQuery=true" to your query and look at the "timing" section that comes back with the response to see q breakdown of Qtime. It should offer some insight into which search component(s) are taking the most time. That might point you in the right direction for improvements. Also, see how