Solr Authentication Problem

2009-06-22 Thread Allahbaksh Asadullah
Hi All, I am facing getting error when I am using Authentication in Solr. I followed Wiki. The error doesnot appear when I searching. Below is the code snippet and the error. Please note I am using Solr 1.4 Development build from SVN. HttpClient client=new HttpClient();

Termscomponent and filter queries

2009-06-22 Thread Ingo Renner
Hi *, currently the terms component does not support filter queries. However, without them the returned count for the terms might differ to the actual results the user gets when conducting a search with a suggested word and (automatically) applied filter queries. So, are there any plans t

howto understand solr stats

2009-06-22 Thread Julian Davchev
Hi Where can I read about understanding solr stats. I got this in cache section but kinda not talking too much to me. lookups : 149272 hits : 135267 hitratio : 0.90 inserts : 14018 evictions : 13506 size : 512 warmupTime : 0 cumulative_lookups : 7188459 cumulative_hits : 5429817 cumulative_hitrati

Re: Auto suggest.. how to do mixed case

2009-06-22 Thread Shalin Shekhar Mangar
On Fri, Jun 19, 2009 at 12:50 PM, Ian Holsman wrote: > I've noticed that one of the new features in Solr 1.4 is the Termscomponent > which enables the Autosuggest. > TermsComponent *can* be used for autosuggest though I don't think that was the original motivation. In the end it just the same th

Re: Auto suggest.. how to do mixed case

2009-06-22 Thread Ingo Renner
Am 22.06.2009 um 11:09 schrieb Shalin Shekhar Mangar: Hi Shalin, I think that by naming it as /autoSuggest, a lot of users have been misled since there are other techniques available. what would you suggest? Ingo -- Ingo Renner TYPO3 Core Developer, Release Manager TYPO3 4.2

Re: Auto suggest.. how to do mixed case

2009-06-22 Thread Shalin Shekhar Mangar
On Mon, Jun 22, 2009 at 2:55 PM, Ingo Renner wrote: > > Hi Shalin, > > I think >> that by naming it as /autoSuggest, a lot of users have been misled since >> there are other techniques available. >> > > what would you suggest? > > There are many techniques. Personally, I've used 1. Prefix se

Re: Auto suggest...

2009-06-22 Thread Paul Libbrecht
I'm not sure I'm understanding fully this thread, on the one hand it speaks about tuning the appropriate analyzer to get mixed case matching... This part I am not addressing and I zapped that part of the suject. on the other hand it seems to speak about an auto-suggestion facility? Is this ht

Re: Auto suggest...

2009-06-22 Thread Shalin Shekhar Mangar
On Mon, Jun 22, 2009 at 4:55 PM, Paul Libbrecht wrote: > I'm not sure I'm understanding fully this thread, > > on the one hand it speaks about tuning the appropriate analyzer to get > mixed case matching... > This part I am not addressing and I zapped that part of the suject. > > on the other han

Re: Solr Authentication Problem

2009-06-22 Thread Allahbaksh Asadullah
Hi All, I am facing getting error when I am using Authentication in Solr. I followed Wiki. The error doesnot appear when I searching. Below is the code snippet and the error. Please note I am using Solr 1.4 Development build from SVN. HttpClient client=new HttpClient();

multi-word synonyms with multiple matches

2009-06-22 Thread Ensdorf Ken
We have a field with index-time synonyms called "title". Among the entries in the synonyms file are vp,vice president svp,senior vice president However, a search for "vp" does not return results where the title is "senior vice president". It appears that the term "vp" is not indexed when ther

Data Import Handler

2009-06-22 Thread Mukerjee, Neiloy (Neil)
After setting up a working Solr 1.3 example with a Tomcat 6 container, I have been trying to figure out the Data Import Handler so I can work with a MySQL database. However, after following the guidelines at http://wiki.apache.org/solr/DataImportHandler#head-b3518c890e46befa05c9242c8fc329517c1ea

Re: Data Import Handler

2009-06-22 Thread Shalin Shekhar Mangar
On Mon, Jun 22, 2009 at 7:52 PM, Mukerjee, Neiloy (Neil) < neil.muker...@alcatel-lucent.com> wrote: > After setting up a working Solr 1.3 example with a Tomcat 6 container, I > have been trying to figure out the Data Import Handler so I can work with a > MySQL database. However, after following th

spellcheck. limit the suggested words by some field

2009-06-22 Thread Julian Davchev
Hi, I have build spellcheck dictionary based on name field. It works like a charm but I'd like to limit the returned suggestion. For example we have following sturcutre id name type 1Berlin city 2berganphony So when I search for suggested words of "ber" I wou

Re: ExtractRequestHandler - not properly indexing office docs?

2009-06-22 Thread cloax
Yep, I've tried both of those and still no joy. Here's both my curl statement and the resulting Solr log output. curl http://localhost:8983/solr/update/extract?ext.def.fl=text\&ext.literal.id=1\&ext.map.div=text\&ext.capture=div -F "myfi...@dj_character.doc" Curls output: 0317 Solr log: J

RE: Slowness during submit the index

2009-06-22 Thread Francis Yakin
No VM. -Original Message- From: Bruno [mailto:brun...@gmail.com] Sent: Saturday, June 20, 2009 10:10 PM To: solr-user@lucene.apache.org Subject: Re: Slowness during submit the index We were having performance issues using servers running on VM. Are you running QA or Prod in a VM? 2009/6/

Re: howto understand solr stats

2009-06-22 Thread Otis Gospodnetic
Julian, Explanations below. -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message > From: Julian Davchev > To: solr-user@lucene.apache.org > Sent: Monday, June 22, 2009 5:01:12 AM > Subject: howto understand solr stats > > Hi > Where can I read about unde

Re: Sorlj when to commit?

2009-06-22 Thread Otis Gospodnetic
Hi, If you don't need the searcher to see index changes (new docs) during your indexing, just wait until you are done and commit/optimize at the end. Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message > From: pof > To: solr-user@lucene.apache.org >

RE: Data Import Handler

2009-06-22 Thread Mukerjee, Neiloy (Neil)
I am not using multiple Solr cores, but I hadn't restarted after making changes to the solrconfig file or adding a data-config file, so I did that and got a "severe errors" warning in my browser, with the below text in my logs. When I delete the data-config file and remove the DataImportHandler

Re: Data Import Handler

2009-06-22 Thread Shalin Shekhar Mangar
On Mon, Jun 22, 2009 at 10:51 PM, Mukerjee, Neiloy (Neil) < neil.muker...@alcatel-lucent.com> wrote: > > I suspect that the fact that the data-config file is blank is causing these > issues, but per the documentation on the website, there is no indication of > what, if anything, should go there -

Re: Keyword Density

2009-06-22 Thread Chris Hostetter
: Date: Wed, 3 Jun 2009 10:19:06 -0700 (PDT) : From: Otis Gospodnetic : Subject: Re: Keyword Density : > > But I don't need to sort using this value. I need to cut results, where : > > this value (for particular term of query!) not in some range. : I don't think this is possible without changing

Re: Sending Mlt POST request

2009-06-22 Thread Chris Hostetter
: I wish to send an Mlt request to Solr and filter the result by a list of : values to specific field. The problem is sometimes the list can include : thousands of values and it's impossible to send such GET request. : : Sending this request as POST didn't work well... Is POST supported by : m

Re: searchcomponent howto ...

2009-06-22 Thread Chris Hostetter
: and then ask, :- how can i set the value of query so that it is reflected in the 'q' : node of the search results e.g. solr. : the example 'process' method above works, but the original query is still : written to the search results page. if you're talking about the param values that get wri

Re: Schema vs Dynamic Fields

2009-06-22 Thread Chris Hostetter
: Date: Mon, 08 Jun 2009 16:44:45 -0700 : From: Phil Hagelberg : Subject: Schema vs Dynamic Fields : Is the use of a predefined schema primarily a "type safety" feature? : We're considering using Solr for a data set that is very free-form; will : we get much slower results if the majority of our d

Re: no .war with ubuntu release ?

2009-06-22 Thread Chris Hostetter
: Date: Thu, 18 Jun 2009 19:00:18 -0400 : From: Jonathan Vanasco : Subject: no .war with ubuntu release ? : after countless searching, it seems that there is no .war file in the distro : http://packages.ubuntu.com/hardy/all/solr-common/filelist : http://packages.ubuntu.com/hardy/all/solr-jetty/

THIS WEEK: PNW Hadoop / Apache Cloud Stack Users' Meeting, Wed Jun 24th, Seattle

2009-06-22 Thread Bradford Stephens
Hey all, just a friendly reminder that this is Wednesday! I hope to see everyone there again. Please let me know if there's something interesting you'd like to talk about -- I'll help however I can. You don't even need a Powerpoint presentation -- there's many whiteboards. I'll try to have a video

Re: DataImportHandler configuration - externalizing environment-specific settings?

2009-06-22 Thread Erik Hatcher
Ah, thanks Noble. I should have figured that one out myself - I think the built-in capabilities of setting a parameter from the handler mapping will do the trick nicely, indirecting it from a system property. Erik On Jun 21, 2009, at 11:49 PM, Noble Paul നോബിള്‍ नोब्ळ् wrote: T

Re: ExtractRequestHandler - not properly indexing office docs?

2009-06-22 Thread Grant Ingersoll
What's your default search field? On Jun 22, 2009, at 12:29 PM, cloax wrote: Yep, I've tried both of those and still no joy. Here's both my curl statement and the resulting Solr log output. curl http://localhost:8983/solr/update/extract?ext.def.fl=text \&ext.literal.id=1\&ext.map.div=text

Re: Solr Authentication Problem

2009-06-22 Thread Noble Paul നോബിള്‍ नोब्ळ्
I have raised an issue https://issues.apache.org/jira/browse/SOLR-1238 there is patch attached to the issue. On Mon, Jun 22, 2009 at 1:40 PM, Allahbaksh Asadullah wrote: > > Hi All, > I am facing getting error when I am using Authentication in Solr. I > followed Wiki. The error doesnot appear w

Re: ExtractRequestHandler - not properly indexing office docs?

2009-06-22 Thread cloax
I've tried 'text' ( taken from the example config ) and then tried creating a new field called doc_content and using that. Neither has worked. Grant Ingersoll-6 wrote: > > What's your default search field? > > On Jun 22, 2009, at 12:29 PM, cloax wrote: > >> >> Yep, I've tried both of those