RE: Issue using filter query with spellCheck component

2010-12-31 Thread taimurAQ
Thanks for the reply. What i have done now is that i take the suggested string and make another query to solr along with the filter parameter. It is working for now, since i can't figure out another workaround. Regards, Taimur -- View this message in context:

Spelling Suggestions vs Correction

2010-12-31 Thread TxCSguy
Hi, I am trying to clear up some confusion about SOLR's spell check functionality. Being new to SORL and Lucene as well, I was under the assumption that spellcheck would take a query entered by a user and end up actually querying the index based upon the corrections returned by the spellcheck

Re: Different behavior for q=goo.com vs q=@goo.com in queries?

2010-12-31 Thread Gora Mohanty
On Fri, Dec 31, 2010 at 2:40 AM, mrw mikerobertsw...@gmail.com wrote: Basically, just what you've suggested.  I did the field/query analysis piece with verbose output.  Not entirely sure how to interpret the results, of course.  Currently reading anything I can find on that. [...] From the

How to delete links from Index

2010-12-31 Thread Tapan . Sadafal
Dear, I have created Index through Crawler Solr but i am getting old pages link also. My query is how to delete specific links from Index through Solr Admin? Regards, Tapan Sadafal. DID : 67897880 This e-mail is confidential. It may also be legally privileged. If you are not the addressee you

Re: Custom Analyzer

2010-12-31 Thread nitishgarg
My actual class files present in the jar file are: MarathiAnalyzer.class MarathiStemFilter.class MarathiStemmer.class MarathiAnayzer$1.class MarathiAnalyzer$SavedStreams.class Please tell what else do I need to specify about my problem? -- View this message in context:

Re: Spelling Suggestions vs Correction

2010-12-31 Thread Erick Erickson
Here's a discussion of the difference between them, does that answer? http://lucene.472066.n3.nabble.com/spell-check-vs-terms-component-td1870214.html Best Erick On Fri, Dec 31, 2010 at 8:55 AM, TxCSguy markefonte...@gmail.com wrote: Hi, I am trying to clear up some confusion about SOLR's

Re: Custom Analyzer

2010-12-31 Thread Erick Erickson
Well, if that's what's in your class, this won't work: analyzer type=index class=org.apache.lucene.analysis.mr.MarathiAnalyzer because it's looking for org.apache. You can try just class=MarathiAnalyzer So I'm not sure removing the package statement is really what you want here. So now I'm

Re: Different behavior for q=goo.com vs q=@goo.com in queries?

2010-12-31 Thread Ryan McKinley
also try debugQuery=true and see why each result matched On Thu, Dec 30, 2010 at 4:10 PM, mrw mikerobertsw...@gmail.com wrote: Basically, just what you've suggested.  I did the field/query analysis piece with verbose output.  Not entirely sure how to interpret the results, of course.  

Re: How to delete links from Index

2010-12-31 Thread Lance Norskog
The Solr admin pages do not have a delete function. You have to use 'curl' or 'wget' or your own SolrJ program to delete documents. On Fri, Dec 31, 2010 at 3:34 AM, tapan.sada...@hsbcinv.com wrote: Dear, I have created Index through Crawler Solr but i am getting old pages link also. My

solr newbie: Diagnose why DataImportHandler DIH not saving documents

2010-12-31 Thread Stephen Boesch
I am asking for a full DataImport via a url. It seems to be partially happy with the request - with debug=on I can see it saying that 10 documents were indexed. The backend however realizes there are actually 440 records available for the query. Not sure why only 10 records were selected and

Re: solr newbie: Diagnose why DataImportHandler DIH not saving documents

2010-12-31 Thread Stephen Boesch
one little extra piece of info: part of the stats page got omitted - notably the number of errors was reported as 0. errors : 0 timeouts : 0 totalTime : 1963 avgTimePerRequest : 981.5 avgRequestsPerSecond : 0.0011371888 2010/12/31 Stephen Boesch java...@gmail.com I am asking for a full

Re: solr newbie: Diagnose why DataImportHandler DIH not saving documents

2010-12-31 Thread Ahmet Arslan
It seems that with debug=on there is a hard coded default rows=10. http://knowtate.servehttp.com:8983/solr/core0/dataimport?command=full-importdebug=onechoParams=allrows=50 returns Added/Updated: 50 documents. Deleted 0 documents. It seems that debug parameter is related to

Re: solr newbie: Diagnose why DataImportHandler DIH not saving documents

2010-12-31 Thread Stephen Boesch
sure I'll try that. 2010/12/31 Ahmet Arslan iori...@yahoo.com It seems that with debug=on there is a hard coded default rows=10. http://knowtate.servehttp.com:8983/solr/core0/dataimport?command=full-importdebug=onechoParams=allrows=50 returns Added/Updated: 50 documents. Deleted 0

Re: solr newbie: Diagnose why DataImportHandler DIH not saving documents

2010-12-31 Thread Stephen Boesch
Yes that fixed the problem. interesting.. usually think setting debug just changes the verbosity level.. in this case caused docs not to be processed. 02db-data-config.xmlfull-importidle144002010-12-31 17:45:03Indexing completed. Added/Updated: 440 documents. Deleted 0 documents.2010-12-31

solr benchmarks

2010-12-31 Thread Tri Nguyen
Hi,   I remember going through some page that had graphs of response times based on index size for solr.   Anyone know of such pages?   Internally, we have some requirements for response times and I'm trying to figure out when to shard the index.   Thanks,   Tri

Re: solr benchmarks

2010-12-31 Thread François Schiettecatte
I would shard the index so that each shard is no larger than the memory of the machine it sits on, that way your entire index will be in memory all the time. When I was at Feedster (I wrote the search engine), the rule of thumb I had was to have 14GB of index on a 16GB machine. François On