indexing slow, IO-bound?

2008-04-05 Thread Britske
Hi, I have a schema with a lot of (about 1) non-stored indexed fields, which I use for sorting. (no really, that is needed). Moreover I have about 30 stored fields. Indexing of these documents takes a long time. Because of the size of the documents (because of the indexed fields) I am curr

Re: Merging Solr index

2008-04-05 Thread Yonik Seeley
On Fri, Apr 4, 2008 at 6:26 PM, Norskog, Lance <[EMAIL PROTECTED]> wrote: > http://wiki.apache.org/solr/MergingSolrIndexes recommends using the > Lucene contributed app IndexMergeTool to merge two Solr indexes. What > happens if both indexes have records with the same unique key? Will they > bo

RE: Merging Solr index

2008-04-05 Thread Norskog, Lance
Thanks! I have learned Solr as a power user and written a couple of simple filters. I'm not a Lucene heavy. Where is this in Lucene? Is it the default? I don't remember Lucene having the notion of a unique id (primary key). In this merge code, with the latest Lucene 2.3, will the duplicates in s

RE: Merging Solr index

2008-04-05 Thread Chris Hostetter
: I have learned Solr as a power user and written a couple of simple : filters. I'm not a Lucene heavy. Where is this in Lucene? Is it the : default? I don't remember Lucene having the notion of a unique id : (primary key). I can't answer that question (because Yonik's answer suprised me too) bu

Re: Merging Solr index

2008-04-05 Thread Yonik Seeley
On Sat, Apr 5, 2008 at 6:27 PM, Norskog, Lance <[EMAIL PROTECTED]> wrote: > Where is this in Lucene? Is it the > default? I don't remember Lucene having the notion of a unique id > (primary key). It hasn't been around too long. IndexWriter.updateDocument(Term term, Document doc) > In this mer

Re: admin.jsp java.lang.NoSuchFieldError

2008-04-05 Thread Chris Hostetter
: SEVERE: Servlet.service() for servlet jsp threw exception : : java.lang.NoSuchFieldError: config : : at org.apache.jsp.admin.index_jsp._jspService(index_jsp.java:88) : I have the IBM developer works sample app running under the same Tomcat : instance with the war file I am building an

Re: Single Core Can't Find the solrconfig.xml file

2008-04-05 Thread Chris Hostetter
: : I tried setting up a single core application and I get the following error : which claims it can't find the solrconfig.xml yet it is located under : solr/conf/solrconfig.xml in my application : just to clarify, you are saying that your solrconfig.xml is located here... /home/kirber/

RE: indexing slow, IO-bound?

2008-04-05 Thread Jae Joo
You can adjust the performance of indexing by configuring of these parameters. false 10 1000 2147483647 1 Jae -Original Message- From: Britske [mailto:[EMAIL PROTECTED] Sent: Sat 4/5/2008 10:09 AM To: solr-user@lucene.apache.org Subject: indexing slow,