Hi, Timestamp is your most likely source of the problem. Round that as much as you can or use tdate field type (you'll need to grab the nightly build). How many documents are in this index - 1.5GB is a relatively large heap.
Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch ----- Original Message ---- > From: Francis Yakin <fya...@liquid.com> > To: "solr-user@lucene.apache.org" <solr-user@lucene.apache.org> > Sent: Tuesday, May 5, 2009 1:50:07 PM > Subject: RE: OutOfMemory error > > > Here is cache in solrconfig.xml > > > > > class="solr.LRUCache" > size="512" > initialSize="512" > autowarmCount="256"/> > > > > class="solr.LRUCache" > size="512" > initialSize="512" > autowarmCount="256"/> > > > > class="solr.LRUCache" > size="512" > initialSize="512" > autowarmCount="0"/> > > > true > > > > > > > > 10 > > > > > > > > > > > > > > class="solr.LRUCache" > > > class="solr.LRUCache" > If the requested sort does not include score, then the filterCache > > into cached filters if the number of docs selected by the clause > exceeds > > 1-2 for read-only slaves, higher for masters w/o cache warming. --> > every xsltCacheLifetimeSeconds. > 5 > > > And here is in schema.xml > > Sort artist name used by mp3 store to sort artist title for search > --> > > > > > omitNorms="true"/> > > multiValued="true"/> > > > > stored="true"/> > > > > stored="false"/> > > > > stored="false"/> > > > > stored="false"/> > > > > > default="NOW" multiValued="false"/> > > > omitNorms="true"/> > > > > omitNorms="true"/> > > > > > > > > > > > !-- Numeric field types that manipulate the value into > a string value that isn't human-readable in its internal form, > but with a lexicographic ordering the same as the numeric ordering, > so that range queries work correctly. --> > > omitNorms="true"/> > > sortMissingLast="true" omitNorms="true"/> > > sortMissingLast="true" omitNorms="true"/> > > sortMissingLast="true" omitNorms="true"/> > > > > > > > > ignoreCase="true" expand="true"/> > > words="stopwords.txt"/> > > generateNumberParts="1" catenateWords="1" catenateNumbers="1" > catenateAll="0"/> > > > protected="protwords.txt"/> > > > > > > ignoreCase="true" expand="true"/> > > words="stopwords.txt"/> > > generateNumberParts="1" catenateWords="0" catenateNumbers="0" > catenateAll="0"/> > > > protected="protwords.txt"/> > > > > > > -----Original Message----- > From: Otis Gospodnetic [mailto:otis_gospodne...@yahoo.com] > Sent: Tuesday, May 05, 2009 10:32 AM > To: solr-user@lucene.apache.org > Subject: Re: OutOfMemory error > > > Hi Francis, > > How big are your caches? Please paste the relevant part of the config. > Which of your fields do you sort by? Paste definitions of those fields from > schema.xml, too. > > Otis > -- > Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch > > > > ----- Original Message ---- > > From: Francis Yakin > > To: "solr-user@lucene.apache.org" > > Sent: Tuesday, May 5, 2009 1:00:07 PM > > Subject: OutOfMemory error > > > > > > I am having frequent OutOfMemory error on our slaves server. > > > > SEVERE: Error during auto-warming of > > key:org.apache.solr.search.queryresult...@aca6b9cb:java.lang.OutOfMemoryError: > > allocLargeObjectOrArray - Object size: 34279632, Num elements: 8569904 > > SEVERE: Error during auto-warming of > > key:org.apache.solr.search.queryresult...@f9947c35:java.lang.OutOfMemoryError: > > allocLargeObjectOrArray - Object size: 34431488, Num elements: 8607868 > > SEVERE: Error during auto-warming of > > key:org.apache.solr.search.queryresult...@d938cfa3:java.lang.OutOfMemoryError: > > allocLargeObjectOrArray - Object size: 34431488, Num elements: 8607868 > > Exception in thread "[ACTIVE] ExecuteThread: '2' for queue: > > 'weblogic.kernel.Default (self-tuning)'" java.lang.OutOfMemoryError: > > allocLargeObjectOrArray - Object size: 8208, Num elements: 8192 > > Exception in thread "[ACTIVE] ExecuteThread: '5' for queue: > > 'weblogic.kernel.Default (self-tuning)'" java.lang.OutOfMemoryError: > > allocLargeObjectOrArray - Object size: 8208, Num elements: 8192 > > Exception in thread "[ACTIVE] ExecuteThread: '8' for queue: > > 'weblogic.kernel.Default (self-tuning)'" java.lang.OutOfMemoryError: > > allocLargeObjectOrArray - Object size: 8208, Num elements: 8192 > > Exception in thread "[STANDBY] ExecuteThread: '3' for queue: > > 'weblogic.kernel.Default (self-tuning)'" java.lang.OutOfMemoryError: > > allocLargeObjectOrArray - Object size: 8208, Num elements: 8192 > > Exception in thread "[ACTIVE] ExecuteThread: '13' for queue: > > 'weblogic.kernel.Default (self-tuning)'" java.lang.OutOfMemoryError: > > allocLargeObjectOrArray - Object size: 8208, Num elements: 8192 > > > > > > We are running weblogic and java version is 1.5. > > > > We set the heap size to 1.5GB? > > > > What's the recommendation for this issue? > > > > Thanks > > > > Francis