Re:Re: How to speed up solr search speed

2010-07-26 Thread Dennis Gearon
, and Crowded' Laugh at http://www.yert.com/film.php --- On Fri, 7/16/10, marship mars...@126.com wrote: From: marship mars...@126.com Subject: Re:Re: How to speed up solr search speed To: solr-user@lucene.apache.org Date: Friday, July 16, 2010, 11:26 AM Hi. Peter.   Thanks for replying. Hi

Re:Re: How to speed up solr search speed

2010-07-17 Thread marship
Hi. Peter and All. I merged my indexes today. Now each index stores 10M document. Now I only have 10 solr cores. And I used java -Xmx1g -jar -server start.jar to start the jetty server. At first I deployed them all on one search. The search speed is about 3s. Then I noticed from cmd output

Re:Re: How to speed up solr search speed

2010-07-17 Thread marship
Hi. Shawn. My indexes are smaller than yours. I only store id + type in indexes so each core index is about 1 - 1.5GB on disk. I don't have so many servers/VPS as you have. In my option, my problem is not CPU. If possible, I prefer to add more memory to fit indexes in my server. At least at

Re:Re: How to speed up solr search speed

2010-07-16 Thread marship
Hi. Peter. Thanks for replying. Hi Scott! I am aware these cores on same server are interfering with each other. Thats not good. Try to use only one core per CPU. With more per CPU you won't have any benefits over the single-core version, I think. I only have 2 servers, each CPU with 8

Re: Re:Re: How to speed up solr search speed

2010-07-16 Thread Geert-Jan Brits
you mentioned that you have a lot of mem free, but your yetty containers only using between 40-60 mem. probably stating the obvious, but have you increased the -Xmx param like for instance: java -Xmx1024M -jar start.jar that way you're configuring the container to use a maximum of 1024 MB ram

Re:Re: How to speed up solr search speed

2010-07-16 Thread Dennis Gearon
: From: marship mars...@126.com Subject: Re:Re: How to speed up solr search speed To: solr-user@lucene.apache.org Date: Friday, July 16, 2010, 11:26 AM Hi. Peter. Thanks for replying. Hi Scott! I am aware these cores on same server are interfering with each other. Thats not good

Re:RE: How to speed up solr search speed

2010-07-15 Thread marship
Hi. Thanks for replying. My document has many different fields(about 30 fields, 10 different type of documents but these are not the point ) and I have to search over several fields. I was putting all 76M documents into several lucene indexes and use the default lucene.net ParaSearch

Re:Re: How to speed up solr search speed

2010-07-15 Thread marship
Hi. Peter. I think I am not using faceting, highlighting ... I read about them but don't know how to work with them. I am using the default example just change the indexed fields. For my case, I don't think solr can work as fast as 100-200ms on average. I tried some keywords on only single

Re:Re: How to speed up solr search speed

2010-07-15 Thread marship
Hi. Peter. And I checked my example/solr/conf/solrconfig.xml. (solr 1.4) I don't see HashDocSet maxSize=3000 loadFactor=0.75/ in it. But I see it in solr website's solrconfig.xml wiki. So should I add it or the default(without it ) is ok? Thanks 在2010-07-15 17:19:57,Peter Karich