RE: Solr java.lang.OutOfMemoryError: Java heap space

2015-09-28 Thread Markus Jelsma
Hi - you need to use the CursorMark feature for larger sets: https://cwiki.apache.org/confluence/display/solr/Pagination+of+Results M. -Original message- > From:Ajinkya Kale > Sent: Monday 28th September 2015 20:46 > To: solr-user@lucene.apache.org;

Re: Solr java.lang.OutOfMemoryError: Java heap space

2015-09-28 Thread Gili Nachum
If you can't use CursorMark, then I suggest not using the start parameter, instead sort asc by a unique field and and range the query to records with a field value larger then the last doc you read. Then set rows to be whatever you found can fit in memory. On Mon, Sep 28, 2015 at 10:59 PM,

Re: Solr java.lang.OutOfMemoryError: Java heap space

2015-09-28 Thread Ajinkya Kale
If I am not wrong this works only with Solr version > 4.7.0 ? On Mon, Sep 28, 2015 at 12:23 PM Markus Jelsma wrote: > Hi - you need to use the CursorMark feature for larger sets: > https://cwiki.apache.org/confluence/display/solr/Pagination+of+Results > M. > > > >

RE: Solr java.lang.OutOfMemoryError: Java heap space

2015-09-28 Thread will martin
http://opensourceconnections.com/blog/2014/07/13/reindexing-collections-with-solrs-cursor-support/ -Original Message- From: Ajinkya Kale [mailto:kaleajin...@gmail.com] Sent: Monday, September 28, 2015 2:46 PM To: solr-user@lucene.apache.org; java-u...@lucene.apache.org Subject: Solr