I want to grab some data from lucene index file. But I can't read it.

I try to use Luke, but it always crashes with java.lang.OutOfMemoryError: Java heap space. Note -Xmx can't help me. I try -Xmx512, -Xmx1024 and even -Xmx2048.

I try to use Solr also, but gets java.lang.OutOfMemoryError: Java heap space too.

Any ideas how I can extract some data from Lucene?

P. S. I use lucene 2.3.0. My index file is 1.8 Gb size.

link|improve this question

btw: an update of your lucene version is highly recommended ;) – Karussell Sep 3 '11 at 12:28
feedback

2 Answers

What size is the data you are trying to fetch? Maybe the result set is too large to handle?

link|improve this answer
I can't even start Luke or Solr with my database. – Xupypr MV Sep 1 '11 at 7:59
You probably have to use a Luke version that can read older indexes. What Luke version are you using? Here are the Luke versions: code.google.com/p/luke/downloads/list And here an interesting topic: code.google.com/p/luke/issues/detail?id=40 – Martin S. Sep 1 '11 at 8:15
The same sh*t with Luke 1.0.1 (It supports Lucene 2.3.0 as i can see in: code.google.com/p/luke/wiki/Compatibility ). I started it as: java -jar -Xms512m -Xmx2048m lukeall-1.0.1.jar – Xupypr MV Sep 1 '11 at 8:23
feedback
up vote 0 down vote accepted

I create my own simple lucene client, based on org.apache.lucene.search.Searcher. And grab data that I want.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.