RE: After upgrade to solr4, search doesn't work

2013-03-07 Thread David Parks
: Re: After upgrade to solr4, search doesn't work I imagine that you had a qf parameter in your old query request handler, so add qf it to the new query request handler. df is used only if qf is missing. -- Jack Krupansky -Original Message- From: David Parks Sent: Wednesday, March 06

Re: After upgrade to solr4, search doesn't work

2013-03-06 Thread Jack Krupansky
; David Parks Subject: Re: After upgrade to solr4, search doesn't work Ah, I think I see the issue, in the debug results it's only searching the id field, which is the unique ID, that must have gotten changed in the upgrade. In fact I think I might have had a misconfiguration in the 3.x version

After upgrade to solr4, search doesn't work

2013-03-05 Thread David Parks
I just upgraded from solr3 to solr4, and I wiped the previous work and reloaded 500,000 documents. I see in solr that I loaded the documents, and from the console, if I do a query *:* I see documents returned. I copied a single word from the text of the query results I got from *:* but any query

Re: After upgrade to solr4, search doesn't work

2013-03-05 Thread Jack Krupansky
@lucene.apache.org Subject: After upgrade to solr4, search doesn't work I just upgraded from solr3 to solr4, and I wiped the previous work and reloaded 500,000 documents. I see in solr that I loaded the documents, and from the console, if I do a query *:* I see documents returned. I copied a single

Re: After upgrade to solr4, search doesn't work

2013-03-05 Thread mani arasu
You should probably be looking at which Analyzer you used in solr version 3.x and which one you are using in solr version 4.x. If there is any change in that you may have to do either of the following: - Do a full-import so that documents are created according to your new schema - Do a

Re: After upgrade to solr4, search doesn't work

2013-03-05 Thread David Parks
: Wednesday, March 6, 2013 1:34 PM Subject: Re: After upgrade to solr4, search doesn't work You may simply need to set the default value of the df parameter in the /select request handler in solrconfig.xml to be your default query field name if it is not text. -- Jack Krupansky -Original

Re: After upgrade to solr4, search doesn't work

2013-03-05 Thread David Parks
From: mani arasu reachmaniar...@gmail.com To: solr-user@lucene.apache.org Sent: Wednesday, March 6, 2013 1:37 PM Subject: Re: After upgrade to solr4, search doesn't work You should probably be looking at which Analyzer you used in solr version 3.x and which

Re: After upgrade to solr4, search doesn't work

2013-03-05 Thread David Parks
Subject: Re: After upgrade to solr4, search doesn't work All but the unique ID field use the out-of-the-box default text_en_splitting field type, this copied over from v3 to v4 without change as far as I know. I've done the import from scratch (deleted the solr data directory and re-imported

Re: After upgrade to solr4, search doesn't work

2013-03-05 Thread David Parks
Parks davidpark...@yahoo.com To: solr-user@lucene.apache.org solr-user@lucene.apache.org Sent: Wednesday, March 6, 2013 1:52 PM Subject: Re: After upgrade to solr4, search doesn't work Good though, thanks for the quick reply too. Seems that this is still set to my unique ID field:   requestHandler