AW: Date field mystery

2008-09-15 Thread Kolodziej Christian
Hi Eric, >The guys who really know will be able to provide you much better >feedback if you include: >your field definitions I hope, the following fields are enough. >probably your locale settings. The standard locale is en_US UTF8 and java doesn't seem to use another local

Re: Adding bias to Distributed search feature?

2008-09-15 Thread Andrzej Bialecki
Lance Norskog wrote: Thanks! We made variants of this and a couple of other files. As to why we have the same document in different shards with different contents: once you hit a certain index size and ingest rate, it is easiest to create a series of indexes and leave the older ones alone. In t

Solr 1.3 and Lucene 2.4 dev

2008-09-15 Thread Lance Norskog
Is it possible to run Solr 1.3 with Lucene 2.3.2, the last official release of Lucene? We're running into a problem with our very very large index and wonder if there is a bug in the development Lucene. Thanks, Lance Norskog

Re: SolrJ and JSON in Solr -1.3

2008-09-15 Thread Ryan McKinley
The solrj API does not care how data is passed around, the interface to use it is identical. If you create a CommonsHttpSolrServer and don't set the parser, it will by default use the javabin parser. SolrServer server = new CommonsHttpSolrServer(url); SolrQuery query = new SolrQuery();

RE: SolrJ and JSON in Solr -1.3

2008-09-15 Thread Julio Castillo
I guess I'm still confused on how to use the Binary response format. I was looking for examples of SolrJ consumers of the response object, but didn't find anything. The only example I see listed on the documentation is uses the XMLResponseParser as follows (excerpt): CommonHttpSolrServer server =

Searching for future or "null" dates

2008-09-15 Thread Chris Maxwell
I'm having a lot of trouble getting this query syntax to work correctly. How can I search for a date, which is either in the future OR missing completely (meaning open ended) I've tried -endDate:[* TO *] OR endDate[NOW TO *] but that doesn't work. Adding parentheses doesn't help either. Any help

RE: Adding bias to Distributed search feature?

2008-09-15 Thread Lance Norskog
Thanks! We made variants of this and a couple of other files. As to why we have the same document in different shards with different contents: once you hit a certain index size and ingest rate, it is easiest to create a series of indexes and leave the older ones alone. In the future, please consi

Re: Solr stops listening

2008-09-15 Thread Fuad Efendi
SOLR main servlet catches all Throwable. In case of very popular OOME with standard JVM from SUN you will get exactly this behaviour. == http://www.tokenizer.org/bot.html Quoting Peter Williams <[EMAIL PROTECTED]>: I am using Solr 1.2.0 with Jetty and I am experiencing some odd

Solr stops listening

2008-09-15 Thread Peter Williams
I am using Solr 1.2.0 with Jetty and I am experiencing some odd failures of Solr. Solr seems to just stops listening for new TCP connections. The Solr process continues running and log contains nothing suspicious (to me, anyway) but curl requests against the server fail with "connection refused"

Re: SolrJ and JSON in Solr -1.3

2008-09-15 Thread Jon Baer
From what I understand you don't have to select a thing, the SolrCore would detect SolrJ and do it automatically(?) ... 44. SOLR-486: Binary response format, faster and smaller than XML and JSON response formats (use wt=javabin). BinaryResponseParser for utilizing the binary format via

Re: Turkish stemming ??? stemming?

2008-09-15 Thread Grant Ingersoll
trunk version is just the latest development version, and can be obtained via Subversion: svn checkout http://svn.apache.org/repos/asf/lucene/solr/trunk See also http://wiki.apache.org/solr/HowToContribute Or, you could just wait for Solr 1.3.0 which will be out this week (I promise!). On

RE: 1.3.0 candidate

2008-09-15 Thread Teruhiko Kurosaka
The release candidates is up again. > -Original Message- > From: Grant Ingersoll [mailto:[EMAIL PROTECTED] > Sent: Monday, September 08, 2008 10:34 AM > To: solr-user@lucene.apache.org > Subject: Re: 1.3.0 candidate > > This is temporarily removed, as I need to create another. > > On S

RE: SolrJ and JSON in Solr -1.3

2008-09-15 Thread Julio Castillo
Erik, Yes indeed my architecture has a middle tier and was hoping to use a solrj client interface to perform the handshake between a Solr server and the browser. And so, if I was able to get hold of the response stream already in JSON format, and just pass it through without having to convert it.

RE: SolrJ and JSON in Solr -1.3

2008-09-15 Thread Julio Castillo
Jon, Is the binary (javabin) format implied by selecting the RawResponseParser? I guess I don't know what the javabin format is. So you took a SolrDocumentList and converted it into a JSON Array? Thanks ** julio -Original Message- From: Jon Baer [mailto:[EMAIL PROTECTED] Sent: Sunday,

Re: No server response code on insert: how do I avoid this at high speed?

2008-09-15 Thread Yonik Seeley
On Mon, Sep 15, 2008 at 2:17 PM, Paleo Tek <[EMAIL PROTECTED]> wrote: > 1) I can't find anything intersterting in the container logs. Is the client timing out the connection? If Solr were encountering errors, they would be logged. -Yonik

Re: No server response code on insert: how do I avoid this at high speed?

2008-09-15 Thread Paleo Tek
Good questions. Otis Gospodnetic wrote: >Perhaps the container logs explain what happened 1) I can't find anything intersterting in the container logs. To the best of my knowledge, neither of the containers notice the drop. Jetty d show "out of threads" type errors before I tweaking the t

Re: SolrJ and JSON in Solr -1.3

2008-09-15 Thread Ryan McKinley
I also have trouble understanding why you would care how solrj talks to the server... the javabin option is the fastest available. If you need to give JSON to a client, can't you just put in a proxy? On Sep 15, 2008, at 12:46 AM, Erik Hatcher wrote: If the client wants JSON, then it seems p

Re: Some new SOLR features

2008-09-15 Thread Ryan McKinley
Here are my gut reactions to this list... in general, most of this comes down to "sounds great, if someone did the work I'm all for it"! Also, no need to post to solr-user AND solr-dev, probably better to think of solr-user as a superset of solr-dev. 1. Machine learning based suggest

RE: apply patch

2008-09-15 Thread Steven A Rowe
(I'm responding on the mailing list to a personal email. Sunny, please use the mailing list, rather than replying to my personal email address. Note that this is a community policy/convention, not just my own preference.) On 09/15/2008 at 11:04 AM, [EMAIL PROTECTED] wrote: > Hi thanks a lot fo

RE: apply patch

2008-09-15 Thread Steven A Rowe
Hi Sunny, This wiki page should answer your questions: Look under the sections "Getting the source code" and "Working With Patches". Good luck, Steve On 09/15/2008 at 9:45 AM, sunnyfr wrote: > > Hello, > > I'm new in Solr / Linux. > > I would li

Some new SOLR features

2008-09-15 Thread Jason Rutherglen
Hello, There are a few features I would like to see in SOLR going forward and I am interested in finding out what other folks thought about them to get a priority list. I believe there are many features that Google and FAST have that SOLR and Lucene will want to implement in future releases. 1.

Re: Date field mystery

2008-09-15 Thread Erick Erickson
The guys who really know will be able to provide you much better feedback if you include: your field definitions probably your locale settings. And have you looked with Luke at your index to see what the data actually looks like for that field in that record? Is it possible that the date is gettin

Re: Help with Dismax query Handler

2008-09-15 Thread Vaijanath N. Rao
Hi Shalin, This works for me. --Thanks and Regards Vaijanath Shalin Shekhar Mangar wrote: On Sun, Sep 14, 2008 at 10:08 AM, Vaijanath N. Rao <[EMAIL PROTECTED]>wrote: We have one field called language, i.e.. language of the documents, we want people to search for there required query term

apply patch

2008-09-15 Thread sunnyfr
Hello, I'm new in Solr / Linux. I would like to know how to check if there is a Solr's update? Where ? Then how can I apply a patch, I read a bit everywhere about trunk folder, but I don't have it? How it works ? Thanks, Sunny -- View this message in context: http://www.nabble.com/apply-p

RE: update solr

2008-09-15 Thread Kashyap, Raghu
SOLR 1.3.0 is in process of being released soon. If you wait for it you can get the latest official release that you can use. http://wiki.apache.org/solr/SolrInstall http://wiki.apache.org/solr/Solr1.3?highlight=(1.3) -Raghu -Original Message- From: sunnyfr [mailto:[EMAIL PROTECTED] Se

Re: Turkish stemming ??? stemming?

2008-09-15 Thread sunnyfr
Hi Grant, Sorry I'm new can you explain me how to apply patch, what is exactly trunk version? Thanks, Sunny Grant Ingersoll-6 wrote: > > Snowball has a Turkish stemmer. It is available in the trunk version > of Solr. > > On Sep 12, 2008, at 11:29 AM, sunnyfr wrote: > >> >> Hi everybody

Re: Sending queries to multicore installation

2008-09-15 Thread Rogerio Pereira
It worked! Thanks Henrib! 2008/9/15 Henrib <[EMAIL PROTECTED]> > > Hi, > If you are sure that you did index your documents through the intended > core, > it might be that your solrconfig.xml does not use the 'dataDir' property > you > declared in solr.xml for your 2 cores. > > The shopping & tour

Date field mystery

2008-09-15 Thread Kolodziej Christian
Hello everybody, We have big problem searching out solr index and filtering for the date. Let me give you an example: there is a record with date 30.04.2008, 15:32:00. My query contains "+date:[20080101T12:00:00Z TO 20080915T13:59:00Z]" but the record is not found. But when I search "+date:[200

RE: What's the bottleneck?

2008-09-15 Thread r.prieto
Hi Jason, I'd like to know how you solved the problem. could you post the solution?? Thanks Raúl -Mensaje original- De: Jason Rennie [mailto:[EMAIL PROTECTED] Enviado el: jueves, 11 de septiembre de 2008 21:58 Para: solr-user@lucene.apache.org Asunto: Re: What's the bottleneck? On Thu,

Re: Sending queries to multicore installation

2008-09-15 Thread Henrib
Hi, If you are sure that you did index your documents through the intended core, it might be that your solrconfig.xml does not use the 'dataDir' property you declared in solr.xml for your 2 cores. The shopping & tourims solconfig.xml should have a line stating: ${dataDir} And *not* the default:

Re: Searching for Index-Time Boosting in FAQ

2008-09-15 Thread Shalin Shekhar Mangar
Please go ahead :-) On Mon, Sep 15, 2008 at 3:04 PM, Luca Molteni <[EMAIL PROTECTED]> wrote: > Now that's clear! > > Since it's and Index-time boost, it was in the indexing documents section. > I > should have checked for that. Would you mind if I dare to update the > scoring > FAQ with the link

Re: Searching for Index-Time Boosting in FAQ

2008-09-15 Thread Luca Molteni
Now that's clear! Since it's and Index-time boost, it was in the indexing documents section. I should have checked for that. Would you mind if I dare to update the scoring FAQ with the link to this page? "To increase the scores for certain documents that match a query, regardless of what that que

Re: Searching for Index-Time Boosting in FAQ

2008-09-15 Thread Shalin Shekhar Mangar
You can specify a boost while indexing by adding a 'boost' attribute to the field tag in the XML. For example: value In the same manner, boost can also be specified on the document tag to boost the score for the whole document. This information is not very prominent in the wiki but s

Searching for Index-Time Boosting in FAQ

2008-09-15 Thread Luca Molteni
Hello, dear Solr Users, I'm starting to learn Solr and Lucene, since I want to use this technology in my project, but I found some trouble in the "index-time boosting" section of the documentation, I'm probably missing something, but since I can't figure out all by myself, I decided to wrote here.

Re: schedule indexing with DataImportHandler

2008-09-15 Thread Shalin Shekhar Mangar
On Mon, Sep 15, 2008 at 1:02 PM, rameshgalla <[EMAIL PROTECTED]>wrote: > > Is it possible to schedule indexing with solr DataImportHandler? > > eg: I want to do delta import automatically everyday at 12AM like that. Only through external means. Create a cron job that uses wget to hit the del

schedule indexing with DataImportHandler

2008-09-15 Thread rameshgalla
hi, Is it possible to schedule indexing with solr DataImportHandler? eg: I want to do delta import automatically everyday at 12AM like that. or Is it possible to initiate delta import automatically whenever there is a modification in database? -- View this message in context: http://www