Re: Retrieving large num of docs

2009-11-27 Thread Raghuveer Kancherla
Hi Andrew, We are running solr using its http interface from python. From the resources I could find, EmbeddedSolrServer is possible only if I am using solr from a java program. It will be useful to understand if a significant part of the performance increase is due to bypassing HTTP before going

Re: Retrieving large num of docs

2009-11-27 Thread AHMET ARSLAN
Hi Andrew, We are running solr using its http interface from python. From the resources I could find, EmbeddedSolrServer is possible only if I am using solr from a java program.  It will be useful to understand if a significant part of the performance increase is due to bypassing HTTP

restore space between words by spell checker

2009-11-27 Thread Andrey Klochkov
Hi If a user issued a misspelled query, forgetting to place space between words, is it possible to fix it with a spell checker or by some other mechanism? For example, if we get query tommyhitfiger and have terms tommy and hitfiger in the index, how to fix the query? -- Andrew Klochkov Senior

What does this error mean?

2009-11-27 Thread Paul Tomblin
NFO: start commit(optimize=false,waitFlush=true,waitSearcher=true,expungeDeletes=false) Nov 27, 2009 3:45:35 AM org.apache.solr.update.processor.LogUpdateProcessor finish INFO: {} 0 634 Nov 27, 2009 3:45:35 AM org.apache.solr.core.SolrCore getSearcher WARNING: [nutch] Error opening new searcher.

Solr CPU usage

2009-11-27 Thread Girish Redekar
Hi I'm testing my Solr instance with multiple simultaneous requests. Here's my test. For an index of ~200K docs, I query Solr with 10 simultaneous threads. Can someone help me explain/improve the following observations: 1) Solr doesn't seem to use all the available CPU to improve response times

Re: Solr CPU usage

2009-11-27 Thread Girish Redekar
Yonik, Am running both my server and client on ubuntu machines. The client is on a different box. The server CPU and RAM are both well below 50%. Girish Redekar http://girishredekar.net On Fri, Nov 27, 2009 at 10:07 PM, Yonik Seeley yo...@lucidimagination.comwrote: On Fri, Nov 27, 2009 at

Re: [SolrResourceLoader] Unable to load cached class-name

2009-11-27 Thread Stuart Grimshaw
On Wed, Nov 25, 2009 at 7:43 PM, Chris Hostetter hossman_luc...@fucit.org wrote: : : I've deployed the contents of dist/ into JBoss's lib directory for the : server I'm running and I've also copied the contents of lib/ into Please be specific ... what is dist/ what is lib/ ? ... are you

Re: What does this error mean?

2009-11-27 Thread Matthew Runo
It means that there was 2 warming searchers, and then a commit came in and caused a third to try to warm up at the same time. Do you use any warming queries, or have large caches? Thanks for your time! Matthew Runo Software Engineer, Zappos.com mr...@zappos.com - 702-943-7833 On Nov 27, 2009,

Re: What does this error mean?

2009-11-27 Thread Paul Tomblin
What's a warming query, and how would I know if I'm doing one? Does this mean the web server restarted or something? On Fri, Nov 27, 2009 at 3:25 PM, Matthew Runo mr...@zappos.com wrote: It means that there was 2 warming searchers, and then a commit came in and caused a third to try to warm

Re: Looking for Best Practices: Analyzers vs. UpdateRequestProcessors?

2009-11-27 Thread Andreas Kahl
Am 26.11.09 11:07, schrieb Shalin Shekhar Mangar: On Wed, Nov 25, 2009 at 9:52 PM, Andreas Kahlandreas_k...@gmx.net wrote: Hello, are there any general criteria when to use Analyzers to implement an indexing function and when it is better to use UpdateRequestProcessors? The main

using Xinclude with multi-core

2009-11-27 Thread Peter Wolanin
I'm trying to take advantage of the Solr 1.4 Xinclude feature to include a different xml fragment (e.g. a different analyzer chain in schema.xml) for each core in a multi-core setup. When the Xinclude operates on a relative path, it seems to NOT be acting relative to the xml file with the

Re: 'Connection reset' in DataImportHandler Development Console

2009-11-27 Thread aerox7
Hi Andrew, I download the last build of solr (1.4) and i have the same probleme with DebugNow in Dataimport dev Console. have you found a solution ? thank you Andrew Clegg wrote: Noble Paul നോബിള്‍ नोब्ळ्-2 wrote: apparently I do not see any command full-import, delta-import being

[Solved] Re: VelocityResponseWriter/Solritas character encoding issue

2009-11-27 Thread Sascha Szott
Hi Erik, I've finally solved the problem. Unfortunately, the parameter v.contentType was not described in the Solr wiki (I've fixed that now). The point is, you must specify (in your solrconfig.xml) str name=v.contentTypetext/xml;charset=UTF-8/str in order to receive correctly UTF-8

Re: Solr CPU usage

2009-11-27 Thread Yonik Seeley
On Fri, Nov 27, 2009 at 12:09 PM, Girish Redekar girish.rede...@aplopio.com wrote: Am running both my server and client on ubuntu machines. The client is on a different box. The server CPU and RAM are both well below 50%. OK, then the obvious thing to try would be to move the client to the

Re: What does this error mean?

2009-11-27 Thread Otis Gospodnetic
Paul, Warm-up queries are specified in solrconfig.xml, have a look. Check markmail.org for plenty of emails explaining exceeded limit of maxWarmingSearers - people have asked about it a lot recently (short answer: you may be committing too often?). Otis -- Sematext is hiring --

Re: restore space between words by spell checker

2009-11-27 Thread Otis Gospodnetic
I'm not sure if that can be easily done (other than going char by char and testing), because nothing indicates where the space might be, not even an upper case there. I'd be curious to know if you find a better solution. Otis -- Sematext is hiring -- http://sematext.com/about/jobs.html?mls

Re: Maximum number of fields allowed in a Solr document

2009-11-27 Thread Otis Gospodnetic
Hi Alex, There is no build-in limit. The limit is going to be dictated by your hardware resources. In particular, this sounds like a memory intensive app because of sorting on lots of different fields. You didn't mention the size of your index, but that's a factor, too. Once in a while

Re: SolrException caused by illegal character

2009-11-27 Thread Otis Gospodnetic
Could it be that your XML contains a control character, code 3? ;) Check the table on http://en.wikipedia.org/wiki/ASCII Otis -- Sematext is hiring -- http://sematext.com/about/jobs.html?mls Lucene, Solr, Nutch, Katta, Hadoop, HBase, UIMA, NLP, NER, IR - Original Message

ExternalFileField is broken in Solr 1.4?

2009-11-27 Thread Koji Sekiguchi
It seems that ExternalFileField doesn't work in 1.4. In 1.4, I need to restart Solr to reflect external_[fieldname] file. Only commit/ was needed in 1.3... Koji -- http://www.rondhuit.com/en/

Re: SolrException caused by illegal character

2009-11-27 Thread György Frivolt
Thanks, I also found out, had to filter my data. Now I removed the control chars.. and solr is happy like I am. On Sat, Nov 28, 2009 at 5:13 AM, Otis Gospodnetic otis_gospodne...@yahoo.com wrote: Could it be that your XML contains a control character, code 3? ;) Check the table on