Question on Index Replication

2010-02-14 Thread abhishes
Hello All, Upon reading the article http://www.lucidimagination.com/Community/Hear-from-the-Experts/Articles/Scaling-Lucene-and-Solr I have a question around index replication. If the query load is very high and I want multiple severs to be able to search the index. Can multiple servers shar

schema design - catch all field question

2010-02-14 Thread adeelmahmood
if this is my schema with this one being the catch all field and I am copying all fields into the content field my question is .. what if instead of that I change the title field to be text as well and dont copy that into content field but still copy everything else (all string fiel

Re: too often delta imports performance effect

2010-02-14 Thread adeelmahmood
thank you .. that helps .. actually its not that many updates .. close to 10 fields probably and may be 50 doc updates per 15 .. so i am assuming that by handling indexing and searching in parallel you mean that if its updating some data .. it will continue to show old data until new data has been

Re: too often delta imports performance effect

2010-02-14 Thread Jan Høydahl / Cominvent
Hi, This all depends on actual volumes, HW, architecture etc. What exactly is "pretty frequently", how many document updates/adds per 15 minutes? Solr is designed to be able to do indexing and search in parallel, so you don't need to fear this, unless you are already pushing the limits of what

too often delta imports performance effect

2010-02-14 Thread adeelmahmood
we are trying to setup solr for a website where data gets updated pretty frequently and I want to have those changes reflected in solr indexes sooner than nighly delta-imports .. so I am thinking we will probably want to set it up to have delta imports running every 15 mins or so .. and solr searc

Re: problem with edgengramtokenfilter and highlighter

2010-02-14 Thread Robert Muir
thanks Joe, good catch! On Sun, Feb 14, 2010 at 2:43 PM, Joe Calderon wrote: > lucene-2266 filed and patch posted. > > On 02/13/2010 09:14 PM, Robert Muir wrote: > >> Joe, can you open a Lucene JIRA issue for this? >> >> I just glanced at the code and it looks like a bug to me. >> >> On Sun, Feb

Re: problem with edgengramtokenfilter and highlighter

2010-02-14 Thread Joe Calderon
lucene-2266 filed and patch posted. On 02/13/2010 09:14 PM, Robert Muir wrote: Joe, can you open a Lucene JIRA issue for this? I just glanced at the code and it looks like a bug to me. On Sun, Feb 14, 2010 at 12:07 AM, Joe Calderonwrote: i ran into a problem while using the edgengramtoken

Re: Facet search concept problem

2010-02-14 Thread Erik Hatcher
You didn't mention what your faceting parameters were, but what you want to do is add a field to every document that specifies its source. So add a "source" (or "type" maybe a better field name) field specifying "news", "article", or "blog". Then facet on that new field. Erik O