Re: can't post.sh/post.jar

2007-06-17 Thread Thierry Collogne
Michael, You can start the process with more memory assigned to your JVM Like this : java -Xms512m -Xmx512m -jar post.jar *.xml This will start the process with an initial memory of 512 MB and a maximum memory use of 512 MB. This is a little explanation about the memory parameters -Xm

Re: can't post.sh/post.jar

2007-06-17 Thread Ryan McKinley
If you are dealing with such large files, you need to make sure the JVM has a big enough heap. Try starting java with -mx100m (-mx2G if you have it) java -mx100m -jar post.jar flix.xml The solr server also needs to be started with enough memory... ryan michael ravits wrote: hello solrs!

can't post.sh/post.jar

2007-06-17 Thread michael ravits
hello solrs! I get the following error on windows when trying to index an ~60mb xml file with post.jar. Also couldn't get post.sh to work - anyone successfully ran it on windows? C:\solr\example\exampledocs>java -jar post.jar flix.xml SimplePostTool: version 1.2 SimplePostTool: WARNING: Make s

Re: Filtering on a 'unique key' set

2007-06-17 Thread Yonik Seeley
On 6/17/07, Henrib <[EMAIL PROTECTED]> wrote: Merely an efficiency related question: is there any other way to filter on a uniqueKey set than using the 'fq' parameter & building a list of the uniqueKeys? I don't thnik so... In 'raw' Lucene, you could use filters directly in search; is this (c

Filtering on a 'unique key' set

2007-06-17 Thread Henrib
Merely an efficiency related question: is there any other way to filter on a uniqueKey set than using the 'fq' parameter & building a list of the uniqueKeys? In 'raw' Lucene, you could use filters directly in search; is this (close to) equivalent efficiency wise? Thanks -- View this message in c

Re: Copying part of index directory

2007-06-17 Thread Roopesh P Raj
Mike Klaas wrote: On 15-Jun-07, at 4:25 AM, Roopesh P Raj wrote: Hi, I am new to solr, lucene. In my project I want to copy index directory based on some query (copy may not copy the whole index directory). I came across a backup script in solr/bin folder but it seems to be copying the who