Re: Memory use with sorting problem

2007-11-28 Thread Chris Laux
about 500.000 minutes in a year) and hence the memory use was also reduced. Chris Chris Laux wrote: > Hi again, > > in the meantime I discovered the use of jmap (I'm not a Java programmer) > and found that all the memory was being used up by String and char[] > objects. >

Re: two solr instances?

2007-11-27 Thread Chris Laux
Have you looked at this page on the wiki: http://wiki.apache.org/solr/SolrTomcat#head-024d7e11209030f1dbcac9974e55106abae837ac That should get you started. -Chris Jörg Kiegeland wrote: > Is it possible to deploy solr.war once to Tomcat (which is on top of an > Apache HTTP Server in my configura

Re: Memory use with sorting problem

2007-11-27 Thread Chris Laux
term? i.e. how to have the slong not be a "String field"? Cheers, Chris Chris Laux wrote: > Hi all, > > I've been struggling with this problem for over a month now, and > although memory issues have been discussed often, I don't seem to be > able to find a fitting

Re: Memory use with sorting problem

2007-11-23 Thread Chris Laux
Hi Otis, thanks for the hint. Turns out I have 17.8 million unique terms. I'm fairly sure by now that the problem lies with the sorting. In the Lucene java docs (http://lucene.zones.apache.org:8080/hudson/job/Lucene-Nightly/javadoc/org/apache/lucene/search/Sort.html) it is stated that > Sorting u

Re: Memory use with sorting problem

2007-11-22 Thread Chris Laux
Thanks for your reply. I made some memory saving changes, as per your advice, but the problem remains. > Set the max warming searchers to 1 to ensure that you never have more > than one warming at the same time. Done. > How many documents are in your index? Currently about 8 million. > If you

Memory use with sorting problem

2007-11-21 Thread Chris Laux
Hi all, I've been struggling with this problem for over a month now, and although memory issues have been discussed often, I don't seem to be able to find a fitting solution. The index is merely 1.5 GB large, but memory use quickly fills out the heap max of 1 GB on a 2 GB machine. This then works

Re: Solr deployment in tomcat

2007-10-09 Thread Chris Laux
Jérôme Etévé wrote: [...] > /var/solr/foo/ is the solr home for this instance (where you'll put > your schema.xml , solrconfig.xml etc.. ) . Thanks for the input Jérôme, I gave it another try and discovered that what I was doing wrong was copying the solr/example/ directory to what you call "/var/

Re: Solr deployment in tomcat

2007-10-09 Thread Chris Laux
I had that very same problem while trying to set solr up with tomcat (and multiple instances). I have given up for now and am working with Jetty instead. Chris Laux