RE: solr - other document formats

2007-11-14 Thread SDIS M. Beauchamp
The commit can't be false. It can be done or not . If it is not, your users won't be able to search through the uncommited documents. It it's done, users can search through all document successfully sent to Solr. You can use the autocommit feature (in solrconfig.xml) to avoid the explicit

Re: solr - other document formats

2007-11-14 Thread Dwarak R
Many thanks Florent Hey All My docs are parsed and indexes are updated (using UpdateRichDocuments patch). But tell me onething what will happen if i don't commit ?. If commit is false where the docs are stored ?. Regards Dwarak R - Original Message - From: SDIS M. Beauchamp [EMAIL

Re: LuceneInAction.zip?

2007-11-14 Thread Erik Hatcher
On Nov 13, 2007, at 12:08 PM, David Neubert wrote: I purchased Lucene In Action (really great book by the way, one of the best technical books (if not the best) that I can ever read. wow! thank you for that wonderful compliment - made my week. That said, here is another one -- I found

snappuller rsync parameter error? - solr hardcoded

2007-11-14 Thread Jae Joo
In the snappuller, the solr is hardcoded. Should it be ${master_data_dir}? # rsync over files that have changed rsync -Wa${verbose}${compress} --delete ${sizeonly} \ ${stats} rsync://${master_host}:${rsyncd_port}/solr/${name}/ ${data_dir}/${name}-wip Thanks, Jae

Re: snappuller rsync parameter error? - solr hardcoded

2007-11-14 Thread Walter Underwood
I'm not an rsync expert, but I beleive that /solr/ is a virtual directory defined in the rsyncd config. It is mapped to the real directory. wunder On 11/14/07 8:43 AM, Jae Joo [EMAIL PROTECTED] wrote: In the snappuller, the solr is hardcoded. Should it be ${master_data_dir}? # rsync over

how to load custom valuesource as plugin

2007-11-14 Thread Britske
I've created a simple valueSource which is supposed to calculate a weighted sum over a list of supplied valuesources. How can I let Solr recognise this valuesource? I tried to simply upload it as a plugin, and reference is by its name (wsum) in a functionquery, but got a Unknown function wsum

Re: how to load custom valuesource as plugin

2007-11-14 Thread Yonik Seeley
Unfortunately, the function query parser isn't currently pluggable. -Yonik On Nov 14, 2007 2:02 PM, Britske [EMAIL PROTECTED] wrote: I've created a simple valueSource which is supposed to calculate a weighted sum over a list of supplied valuesources. How can I let Solr recognise this

Re: how to load custom valuesource as plugin

2007-11-14 Thread Britske
How would you then use a custom valueSource? would extending a requesthandler and explicitly calling the valuesource in the requesthandler work? Obviously, thats not very flexible,but it might do for now. Is a pluggable query parser on the agenda? if so, where can I vote ;-) Geert-Jan

RE: Exception in SOLR when querying for fields of type string

2007-11-14 Thread Kasi Sankaralingam
No I do not have a default field defined, how would you do that? Thanks a lot, kasi -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Yonik Seeley Sent: Tuesday, November 13, 2007 5:41 PM To: solr-user@lucene.apache.org Subject: Re: Exception in SOLR when

RE: snappuller rsync parameter error? - solr hardcoded

2007-11-14 Thread Norskog, Lance
Be careful. 'rsync' has different meanings for 'directory' v.s. 'directory/'. I ran afoul of this. -Original Message- From: Walter Underwood [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 14, 2007 8:49 AM To: solr-user@lucene.apache.org Subject: Re: snappuller rsync parameter

RE: two solr instances - index and commit

2007-11-14 Thread Kasi Sankaralingam
You need to issue just a commit command to solr-2 This will refresh its cache and you will be good to go The sequence: 1) Index and commit on solr-1 2) Just issue commit on solr-2. -Original Message- From: Jae Joo [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 14,

Re: 'version' query parameter

2007-11-14 Thread Chris Hostetter
: How does the 'version' parameter work in a solr query? : I couldn't find anything in the wikis. it's a hard param to search for because of it's very generic name ... it's specific to the XMLResponseWriter... http://wiki.apache.org/solr/XMLResponseFormat -Hoss