Re: How to run Solr on Linux ?

2008-06-05 Thread Yonik Seeley
On Fri, Jun 6, 2008 at 1:13 AM, Akeel <[EMAIL PROTECTED]> wrote: > I downloaded Solr and successfully run it (by running *java -jar > start.jar *from > *example *directory) on windows machine but when i try to run it (in the > same way as i did on windows) on my linux machine, i get following error

scaling / sharding questions

2008-06-05 Thread Jeremy Hinegardner
Hi all, This may be a bit rambling, but let see how it goes. I'm not a Lucene or Solr guru by any means, I have been prototyping with solr and understanding how all the pieces and parts fit together. We are migrating our current document storage infrastructure to a decent sized solr cluster, usi

How to run Solr on Linux ?

2008-06-05 Thread Akeel
Hi, I downloaded Solr and successfully run it (by running *java -jar start.jar *from *example *directory) on windows machine but when i try to run it (in the same way as i did on windows) on my linux machine, i get following error: er.dir=/solr/example 2008-06-05 17:36:17.343::WARN: failed SolrR

highlighting fragment

2008-06-05 Thread Kevin Xiao
Hi, I have a question about highlighting fragment. I set hl.fragsize to 100, but the return is cut off from a middle of a sentence with correct search term highlighting though. Is there a way to make the cutoff to the beginning of a sentence? Set some flag? How does highlighting cutoff work any

Re: Release date of SOLR 1.3

2008-06-05 Thread Mike Klaas
On 5-Jun-08, at 4:47 PM, Ryan Grange wrote: It would be nice to see some kind of update to the Solr website regarding what's holding up a 1.3 release. I look at that a lot more often than I look at this mailing list to see whether or not there's a new version I should be looking to test o

Re: Release date of SOLR 1.3

2008-06-05 Thread Mike Klaas
The Solr website isn't really for disseminating that information (also, we aren't allowed to advertise unofficial builds very loudly. It's a legal thing.). If you want to know what is holding up release, check out JIRA:

Re: Release date of SOLR 1.3

2008-06-05 Thread Ryan Grange
It would be nice to see some kind of update to the Solr website regarding what's holding up a 1.3 release. I look at that a lot more often than I look at this mailing list to see whether or not there's a new version I should be looking to test out. Ryan Grange, IT Manager DollarDays Internati

Re: An unusual question for the experts -- *term* boosting for individual documents?

2008-06-05 Thread Grant Ingersoll
Hmmm, if I understand your question correctly, I think Lucene's payloads are what you are after. Lucene does support Payloads (i.e. per term storage in the index. See the BoostingTermQuery in Lucene and the Token class setPayload() method). However, this doesn't do much for you in Solr as

An unusual question for the experts -- *term* boosting for individual documents?

2008-06-05 Thread Andreas von Hessling
Hi there! As a Solr newbie who has however worked with Lucene before, I have an unusual question for the experts: Question: Can I, and if so, how do I perform index-time term boosting in documents where each boost-value is not the same for all documents (no global boosting of a given term) b

solr query syntax

2008-06-05 Thread Cam Bazz
Hello, how can we specify in query so it will just bring certain field and query in the default field? for example can I do a year:1998 AND searchword Best Regards, -C.B.

Automatic Ranges for Numeric Facets

2008-06-05 Thread wojtekpia
I'd like to provide price range facets on my site. I know I can do this with a query like: select?q=video&facet=true&facet.query=price:[*+TO+500]&facet.query=price:[500+TO+*] However, this requires me to know that $500 is a good separator for prices. Is there a way to get Solr to choose the "bes

Re: Solr 1.3 - leading wildcard query feature?

2008-06-05 Thread Erik Hatcher
On Jun 5, 2008, at 10:13 AM, Maximilian Hütter wrote: I haven't followed the discussion here closly but I am interested if Solr 1.3 will have the feature of leading wildcard in a query. I remember reading a discussion about it and making it configurable, which is perfectly fine with me. W

Re: Solrj + Multicore

2008-06-05 Thread Erik Hatcher
On Jun 5, 2008, at 2:10 PM, Alexander Ramos Jardim wrote: It is not happening. I can't even access solr via web browser when using multicore. Compare your configuration/version with Solr's trunk multicore support. Here's what I did: $ cd dev/solr $ svn up # or svn co https://svn.apa

Re: Solrj + Multicore

2008-06-05 Thread Alexander Ramos Jardim
Well, I even can't get multicore working via the example. :-( It must something I done wrong, I will re-checkout solr and try again. 2008/6/5 Ryan McKinley <[EMAIL PROTECTED]>: > Can you make the packaged example work? > > I would suggest starting with the example and working from there -- ignor

Re: Solrj + Multicore

2008-06-05 Thread Ryan McKinley
Can you make the packaged example work? I would suggest starting with the example and working from there -- ignore solrj until you have things working via standard URL interfaces first. ryan On Jun 5, 2008, at 2:10 PM, Alexander Ramos Jardim wrote: It is not happening. I can't even access

Re: Solrj + Multicore

2008-06-05 Thread Alexander Ramos Jardim
It is not happening. I can't even access solr via web browser when using multicore. 2008/6/5 Ryan McKinley <[EMAIL PROTECTED]>: > without solrj, are you able to hit the url: > http://localhost:8983/solr/idxItem/update > > If not, something is amiss in your configs. Assuming you have multi-core >

Re: Searching accross many fields

2008-06-05 Thread Otis Gospodnetic
Hi, I can't quantify it nor back it up with any concrete numbers, but the search will most certainly be slower with so many fields. Indexing/analysis will also be slower and with so many fields you'll want to pay extra attention to mergeFactor and your OS's open file descriptor limit. Is this

Re: Highlighting and Synonyms

2008-06-05 Thread Otis Gospodnetic
Hi, Do you have index-time or search-time synonym expansion? Doesn't work with either? Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message > From: Peter Hickman <[EMAIL PROTECTED]> > To: solr-user@lucene.apache.org > Sent: Thursday, June 5, 2008 5:22

Re: Solr - Norwegian language

2008-06-05 Thread Otis Gospodnetic
Snowball is our friend ;) http://lucene.apache.org/java/2_3_2/api/contrib-snowball/index.html http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message > From: dudes dudes <[EMAIL PROTECTED]> > To: s

Re: Solrj + Multicore

2008-06-05 Thread Ryan McKinley
without solrj, are you able to hit the url: http://localhost:8983/solr/idxItem/update If not, something is amiss in your configs. Assuming you have multi- core configured correctly, you should be able to see each handler at: http://host/context/${core}/${handler} ryan On Jun 4, 2008, at 2:2

RE: POSTing repeated fields to Solr

2008-06-05 Thread Andrew Nagy
> On 4-Jun-08, at 2:22 PM, Andrew Nagy wrote: > > > Hello - I was wondering if there is a work around with POSTing > > repeated fields to Solr. I am using Jetty as my container with Solr > > 1.2. > > > > I tried something like: > > > http://localhost:8080/solr/select/?q=author:(smith)&rows=0&start

Re: Improve Solr Performance

2008-06-05 Thread Walter Underwood
Do you need all the results? I have never seen a search UI that showed all results at once. Fetching all the results will be slow. Most sites fetch just the results needed to display one page. wunder On 6/5/08 12:46 AM, "khirb7" <[EMAIL PROTECTED]> wrote: > > hello every body > I want to impor

Solr 1.3 - leading wildcard query feature?

2008-06-05 Thread Maximilian Hütter
Hi everbody, I haven't followed the discussion here closly but I am interested if Solr 1.3 will have the feature of leading wildcard in a query. I remember reading a discussion about it and making it configurable, which is perfectly fine with me. Will this be in Solr 1.3 and when will 1. be

Re: new user: some questions about parameters and query syntax

2008-06-05 Thread Bram de Jong
> we can start having more explict structured info > about all of the concepts that are really "core" to how a param works (ie: > name, datatype, is it multivalued, can it be overridden per field, what > is/are the value(s) used for). defaults as well, please Structured information per param

Re: what is null value behavior in function queries?

2008-06-05 Thread Umar Shah
i ran a test. the value for the field is taken to be 0 for the documents which dont have that field. This will return a correct result 1. if the documents are to be put in the end of the sort, AND 2. all the values are positive. is there some way to change this default value (preferably from out

how to get the count of returned results

2008-06-05 Thread Umar Shah
Hi, I am using a servlet filter to alter the query parms sent to the solr , now I have a problem where I want to take some extra action (like drop some query terms or filters ) if the current query returns no reults. Now my question is How can i efficiently get the count of the results for a spec

Solr - Norwegian language

2008-06-05 Thread dudes dudes
Hi all, Does Solr support Norwegian language ? if yes can someone direct me to a right documentation ? thanks ak _ Great deals on almost anything at eBay.co.uk. Search, bid, find and win on eBay today! http://clk.atdmt.com/UKM/go

Re: an error after deleting "index" files

2008-06-05 Thread Nahuel ANGELINETTI
I finally find my error, When I post something to "/update" the xml must contain only one "" for each post. Shalin Shekhar Mangar a écrit : What is the uniqueKey in your schema.xml? Are you sure that all of the 11000 documents have unique values for this uniqueKey? Solr automatically removes d

Re: an error after deleting "index" files

2008-06-05 Thread Nahuel ANGELINETTI
Shalin Shekhar Mangar a écrit : What is the uniqueKey in your schema.xml? Are you sure that all of the 11000 documents have unique values for this uniqueKey? Solr automatically removes duplicates based on the value for the uniqueKey. Yes i'm sure the ids are unique, they are of type : "journ

Re: HttpDataSource common fields

2008-06-05 Thread Shalin Shekhar Mangar
Small correction: Also, you should add transformer="TemplateTransformer" in your entity and then the above will work. There is no attribute named "value" in the field definition. On Thu, Jun 5, 2008 at 9:47 AM, Noble Paul നോബിള്‍ नोब्ळ् < [EMAIL PROTECTED]> wrote: > attachment did not work try

Re: an error after deleting "index" files

2008-06-05 Thread Shalin Shekhar Mangar
What is the uniqueKey in your schema.xml? Are you sure that all of the 11000 documents have unique values for this uniqueKey? Solr automatically removes duplicates based on the value for the uniqueKey. On Thu, Jun 5, 2008 at 3:41 PM, Nahuel ANGELINETTI < [EMAIL PROTECTED]> wrote: > Great ! It wor

Re: an error after deleting "index" files

2008-06-05 Thread Nahuel ANGELINETTI
Great ! It works well as you said ! Now I have another problem, I do a post of 11000 "", and in the stats it say : "numDocs : 730". Do you know why ? Jón Helgi Jónsson a écrit : Hi, not sure but this might be same thing that happened to me, you have to delete the index FOLDER not only the co

Highlighting and Synonyms

2008-06-05 Thread Peter Hickman
I have some data that contains phrases such as 1) "Decisions Relating to Cardiopulmonary Resuscitation: Model Information Leaflet. British Medical Association" 2) "to ensure that cardiopulmonary resuscitation (CPR) may safely proceed" The data will always contain the phrase "cardiopulmonary resu

Improve Solr Performance

2008-06-05 Thread khirb7
hello every body I want to imporve solr performance at time search, so i have read about SolrPerformanceFactor so I tried to increase the size of my caches but the QTime hasn't changed a lot. this is how I am quering I ask to solr to do a search and to return me 200 result the first time so I d

Re: what is null value behavior in function queries?

2008-06-05 Thread Umar Shah
thanks hoss, will surely do that. -umar On Thu, Jun 5, 2008 at 4:35 AM, Chris Hostetter <[EMAIL PROTECTED]> wrote: > > : I am using function queries to rank the results, > : if some/ allthe fields (used in the function ) are missing from the > document > : what will be the ranking behavior fo

Searching accross many fields

2008-06-05 Thread Brian Carmalt
Hello All, We are thinking about a totally dynamic indexing schema, where the only fields that known to be in the index is the ID field. This means that in order to search in the index, the field names of where we want to search must be specified. "q=title:solr+content:solr+summary:solr" and so

RE: Multiple Schema File

2008-06-05 Thread Sachit P. Menon
Hi Noble, Climbingrose, Thanks for that reply. We can have a scenario like this: We have a story with attributes like story id, title, headline, author name, etc. Here story id will be a unique key. We also have an author profile which contains attributes like author name, address, et