Re: Solr and OpenPipe

2008-04-04 Thread Rogerio Pereira
Hi Espen! I tried to follow the getting started guide at openpipe site, the maven build for intranet example doesn't generate the jar with dependencies, what are the current dependencies of openpipe? 2008/4/4, Espen Amble Kolstad <[EMAIL PROTECTED]>: > > Hi, > > I'm one of the developers of the i

why don't all stored fields show up?

2008-04-04 Thread Hung Huynh
I have about 20 stored fields in string, text, and int, but only about 10 fields show up when I query for them, whether I do fl=*,score or list them out. What's my problem? How do I retrieve all of fields? Thanks.

Re: why don't all stored fields show up?

2008-04-04 Thread Yonik Seeley
On Fri, Apr 4, 2008 at 9:25 AM, Hung Huynh <[EMAIL PROTECTED]> wrote: > I have about 20 stored fields in string, text, and int, but only about 10 > fields show up when I query for them, whether I do fl=*,score or list them > out. What's my problem? How do I retrieve all of fields? Thanks. You s

RE: why don't all stored fields show up?

2008-04-04 Thread Hung Huynh
Do you think it might be a problem with my schema and data loading? I loaded CSV with 39 fields and didn't get any error message. I have a total of 39 stored fields, but not all of them are reported back when I query for them. Should I reload the Index? Is there a way for me to check if the Index h

Re: why don't all stored fields show up?

2008-04-04 Thread Yonik Seeley
On Fri, Apr 4, 2008 at 11:57 AM, Hung Huynh <[EMAIL PROTECTED]> wrote: > Do you think it might be a problem with my schema and data loading? Maybe. > I loaded > CSV with 39 fields and didn't get any error message. I have a total of 39 > stored fields, but not all of them are reported back when

Single Core Can't Find the solrconfig.xml file

2008-04-04 Thread kirk beers
Hi, 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 : thnx *type* Status report *message* *Severe errors in solr configuration. Check your log files for mo

Re: numDocs and maxDoc

2008-04-04 Thread Chris Hostetter
: Thanks hossman, this is exactly what I want to do. : Final question: so I need to merge the field by myself first? (Actually my : original plan is to do 2 consecutive postingso merging is possible) you need to send Solr whole documents with all the fields in them. if you send another "doc"

Re: Multiple unique field?

2008-04-04 Thread Chris Hostetter
: When I set 2 unique key field, it looks like Solr only accept the first : definition in schema.xml...question: so once the unique Key defined, it : can't be overrided? there is one and only one uniqueKey field ... trying to declare two should probably be an error 9anyone wnat to submit a patch

Re: Date range performance

2008-04-04 Thread Mike Klaas
On 3-Apr-08, at 4:24 PM, Jonathan Ariel wrote: Is this depends on the number of documents that matches the query or the number of documents in the index? This aspect is more depedent on the number of terms that the date query translates into. If in a 3 million documents index my query mat

Re: solr commit command questions

2008-04-04 Thread Mike Klaas
On 3-Apr-08, at 10:04 AM, oleg_gnatovskiy wrote: Hello. I was wondering what happens when an add command is done without a commit command. Is there any way to roll back? No, there isn't (unless you've taken a snapshot of the index using snapshooter). The main problem is that there is no

Re: Date range performance

2008-04-04 Thread Jonathan Ariel
Thanks! I'll try taking some precision and let you know about the result. Looking into the code it seems like a Lucene problem, more than Solr. It is in the RangeQuery and RangeFilter classes. The problem with changing this to have a sorted index and than binary search is that you have to sort it,

RE: why don't all stored fields show up?

2008-04-04 Thread Hung Huynh
Thanks for spending time on this issue. I removed most the fields, and it's still not working: http://localhost:8983/solr/update/csv?commit=true&separator=|&escape=\&strea m.file=exampledocs/test1.txt test1.txt content guid|sku 1|ABC001 Query: http://localhost:8983/solr/select/?q=guid%3A1&versi

Re: Date range performance

2008-04-04 Thread Chris Hostetter
: Looking into the code it seems like a Lucene problem, more than Solr. It is : in the RangeQuery and RangeFilter classes. The problem with changing this to : have a sorted index and than binary search is that you have to sort it, : which is slow. Unless we can store the ordered index somewhere an

Merging Solr index

2008-04-04 Thread Norskog, Lance
Hi- 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 both go into the new index? Is the implementation of unique IDs in the Solr java

Re: solr commit command questions

2008-04-04 Thread oleg_gnatovskiy
So, what is the point of the commit? oleg_gnatovskiy wrote: > > Hello. I was wondering what happens when an add command is done without a > commit command. Is there any way to roll back? > -- View this message in context: http://www.nabble.com/solr-commit-command-questions-tp16467824p1650444

admin.jsp java.lang.NoSuchFieldError

2008-04-04 Thread Mendes, Richard
I have been testing our solr homes and applications with Solr 1.3 using builds I do from the SVN trunk. All of our code runs fine with Solr 1.2. I am running Solr under Tomcat 5.5.26 using JNDI. When running with Solr 1.3, Tomcat comes up clean. However, if you hit the admin index page, you get

Re: solr commit command questions

2008-04-04 Thread Leonardo Santagada
On 04/04/2008, at 20:24, oleg_gnatovskiy wrote: So, what is the point of the commit? I always tought about it... this should have been named flush as it is on xapian... it has nothing to do with databases commits and the data will end up in the index one way or the other. -- Leonardo S

Re: solr commit command questions

2008-04-04 Thread Mike Klaas
On 4-Apr-08, at 4:24 PM, oleg_gnatovskiy wrote: So, what is the point of the commit? It makes the data you have updated since last commit visible to the searchers. -Mike