Index partitioning

2008-10-24 Thread mahendra mahendra
Hi,   I want to partition my index based on category information. Also, while indexing I want to store particular category data to corresponding index partition. In the same way I need to search for category information on corresponding partition..   I found some information on wiki link http:/

RE: Solr 1.3 stack overflow when accessing solr/admin page

2008-10-24 Thread Dadasheva, Olga
I am running the packaged war. It used to work 1 year ago when I briefly looked into using Solr instead of Lucene - at that time I just built the trunk and it worked from the first plug (Solr 1.3 dev around Sep 9th 2007). -Original Message- From: Ryan McKinley [mailto:[EMAIL PROTECTED]

Lucene project & subprojects news RSS feed?

2008-10-24 Thread David Smiley @MITRE.org
On the main lucene web page: http://lucene.apache.org/index.html There is a list of news items spanning all the lucene subprojects. Does anyone know if there is an RSS feed or "announce" mailing list that has this information? ~ David Smiley -- View this message in context: http://www.nabble.c

Re: Entity extraction?

2008-10-24 Thread Rogerio Pereira
I agree Ryan and I would like see a completly integration between solr, nutch, tika and mahout in the future. 2008/10/24 Ryan McKinley <[EMAIL PROTECTED]> > This is not something solr does currently... > > It sounds like something that should be added to Mahout: > http://lucene.apache.org/mahout/

RE: Entity extraction?

2008-10-24 Thread Charlie Jackson
Thanks for the replies, guys, that gives me a good place to start looking. - Charlie -Original Message- From: Rogerio Pereira [mailto:[EMAIL PROTECTED] Sent: Friday, October 24, 2008 5:14 PM To: solr-user@lucene.apache.org Subject: Re: Entity extraction? You can find more about this to

Re: Entity extraction?

2008-10-24 Thread Ryan McKinley
This is not something solr does currently... It sounds like something that should be added to Mahout: http://lucene.apache.org/mahout/ On Oct 24, 2008, at 4:18 PM, Charlie Jackson wrote: During a recent sales pitch to my company by FAST, they mentioned entity extraction. I'd never heard of

Re: Entity extraction?

2008-10-24 Thread Rogerio Pereira
You can find more about this topic in this book availabe at amazon: http://www.amazon.com/Building-Search-Applications-Lucene-Lingpipe/dp/0615204252/ 2008/10/24 Rafael Rossini <[EMAIL PROTECTED]> > Solr can do a simple facet seach like FAST, but the entity extraction > demands other tecnologies.

Re: Entity extraction?

2008-10-24 Thread Rafael Rossini
Solr can do a simple facet seach like FAST, but the entity extraction demands other tecnologies. I do not know how FAST does it but at the company I´m working on (www.cortex-intelligence.com), we use a mix of statistical and language-specific tasks to recognize and categorize entities in the text.

Re: Solr 1.3 stack overflow when accessing solr/admin page

2008-10-24 Thread Ryan McKinley
are you running the packaged .war directly? or something custom? Did it ever work? Is anyone else running successfully on weblogic? On Oct 24, 2008, at 5:10 PM, Dadasheva, Olga wrote: Hi, I run Solr 1.3 in Weblogic 10.3 Java 6; I have a single core application deployed to the same serve

Solr 1.3 stack overflow when accessing solr/admin page

2008-10-24 Thread Dadasheva, Olga
Hi, I run Solr 1.3 in Weblogic 10.3 Java 6; I have a single core application deployed to the same server as Solr 1.3. I am not using solrj. I do not have any problems with search and update - they work fine. However I am getting stack overflow when I try to access solr/admin page. java.lang

RE: customizing results in StandardQueryHandler

2008-10-24 Thread Manepalli, Kalyan
Populating the field at the index time is a good option. Is there any other way to do it in search time Thanks, Kalyan Manepalli -Original Message- From: Ryan McKinley [mailto:[EMAIL PROTECTED] Sent: Friday, October 24, 2008 2:14 PM To: solr-user@lucene.apache.org Subject: Re: customizin

Entity extraction?

2008-10-24 Thread Charlie Jackson
During a recent sales pitch to my company by FAST, they mentioned entity extraction. I'd never heard of it before, but they described it as basically recognizing people/places/things in documents being indexed and then being able to do faceting on this data at query time. Does anything like this al

Re: timeouts

2008-10-24 Thread Grant Ingersoll
What is happening at the time of the freeze? Are you indexing? Searching? For either of these options, what are the operations that are happening? Is Tomcat and the Solr admin accessible while this happens? Are there any exceptions in the logs? How much memory are you giving it versus

Re: customizing results in StandardQueryHandler

2008-10-24 Thread Ryan McKinley
I'm still not following... Does the logic depend on the result? That is, are you asking for doc A to have f1,f2 and doc B to have f1,f4? If that is your question, then no -- as is, the ResponseWriter will write the same fields for every document. When you say "(f2, f3, and some new data

RE: customizing results in StandardQueryHandler

2008-10-24 Thread Norskog, Lance
Ah! This will let you post-process result sets with an XSL script: http://wiki.apache.org/solr/XsltResponseWriter -Original Message- From: Manepalli, Kalyan [mailto:[EMAIL PROTECTED] Sent: Friday, October 24, 2008 11:44 AM To: solr-user@lucene.apache.org Subject: RE: customizing result

RE: customizing results in StandardQueryHandler

2008-10-24 Thread Manepalli, Kalyan
Ryan, Actually, what I need is: I always query for a set of fields say (f1, f2, f3 .. f6). Now once I get the results, based on some logic, I need to generate the XML which is customized and contains only fields say (f2, f3, and some new data). So the fl will always be (f1 ... f6) Thank

Re: customizing results in StandardQueryHandler

2008-10-24 Thread Ryan McKinley
isn't this just: fl=f1,f3,f4 etc or am I missing something? On Oct 24, 2008, at 12:26 PM, Manepalli, Kalyan wrote: Hi, In my usecase, I query a set of fields. Then based on the results, I want to output a customized set of fields. Can I do this without using a search component? E:g.

Re: Deadlock problem on searcher at warm up.

2008-10-24 Thread Jérôme Etévé
Great, it works now. Thanks ! J On Fri, Oct 24, 2008 at 4:45 PM, Yonik Seeley <[EMAIL PROTECTED]> wrote: > On Fri, Oct 24, 2008 at 8:21 AM, Jérôme Etévé <[EMAIL PROTECTED]> wrote: >> I though it'd be ok to trigger this the very first time the process >> method is called by doing something like t

customizing results in StandardQueryHandler

2008-10-24 Thread Manepalli, Kalyan
Hi, In my usecase, I query a set of fields. Then based on the results, I want to output a customized set of fields. Can I do this without using a search component? E:g. I query for fields f1, f2, f3, f4. Now based on some conditions, I want to output just f1, f3, f4 (the list of final field

Re: Deadlock problem on searcher at warm up.

2008-10-24 Thread Yonik Seeley
On Fri, Oct 24, 2008 at 8:21 AM, Jérôme Etévé <[EMAIL PROTECTED]> wrote: > I though it'd be ok to trigger this the very first time the process > method is called by doing something like that: > > private boolean firstTime= true ; > > public void process(ResponseBuilder rb) throws IOException { >

Re: One document inserted but nothing showing up ? SOLR 1.3

2008-10-24 Thread Jérôme Etévé
Hi there, Are you sure you did a commit after your insertion ? On Fri, Oct 24, 2008 at 8:11 AM, sunnyfr <[EMAIL PROTECTED]> wrote: > > Even that doesn't work, > How can I check properly, I did insert one document but I can't get it back > ??? > > > Feak, Todd wrote: >> >> Unless "q=ALL" is a spec

Re: How to search a DataImportHandler solr index

2008-10-24 Thread Nick80
Hi, below is a simplified copy of my data-config file: I have defined the following fields in schema.xml: Hope that makes it a bit cleare

Re: delta-import for XML files, Solr statistics

2008-10-24 Thread Akshay
On Fri, Oct 24, 2008 at 6:07 PM, <[EMAIL PROTECTED]> wrote: > Thanks for your very fast response :-) > > > > > 2.) > > > The documentation from DataImportHandler describes the index update > > process for SQL databases only... > > > > > > My scenario: > > > - My application creates, deletes and mo

timeouts

2008-10-24 Thread Simon Collins
Hi We're running solr on a win 2k3 box under tomcat with about 100,000 records. When doing large updates of records via solr sharp, solr completely freezes and doesn't come back until we restart tomcat. This has only started happening since putting mysql on the same box (as a source of the

Re: delta-import for XML files, Solr statistics

2008-10-24 Thread gistolero
Thanks for your very fast response :-) > > 2.) > > The documentation from DataImportHandler describes the index update > process for SQL databases only... > > > > My scenario: > > - My application creates, deletes and modifies files from /tmp/files > every night. > > - delta-import / DataImportHa

Deadlock problem on searcher at warm up.

2008-10-24 Thread Jérôme Etévé
Hi everyone, I'm implementing a search component inherited from SearchComponent . This component has to build a data structure from the index. Like in the SpellChecker, I trigger this building by giving a special argument at query time (from the process method) and I'm using the searcher I get

Re: delta-import for XML files, Solr statistics

2008-10-24 Thread Noble Paul നോബിള്‍ नोब्ळ्
On Fri, Oct 24, 2008 at 5:14 PM, <[EMAIL PROTECTED]> wrote: > Hello, > > I have some questions about DataImportHandler and Solr statistics... > > > 1.) > I'm using the DataImportHandler for creating my Lucene index from XML files: > > ### > $ cat data-config.xml > > > > processor="F

delta-import for XML files, Solr statistics

2008-10-24 Thread gistolero
Hello, I have some questions about DataImportHandler and Solr statistics... 1.) I'm using the DataImportHandler for creating my Lucene index from XML files: ### $ cat data-config.xml ... ### No problems with this configuration - All works fine for full-imports, but..

Re: How to search a DataImportHandler solr index

2008-10-24 Thread Noble Paul നോബിള്‍ नोब्ळ्
probably u can paste your data-config.xml with the queries etc --Noble On Fri, Oct 24, 2008 at 1:33 PM, Nick80 <[EMAIL PROTECTED]> wrote: > > Hi Paul, > > thanks for the answer but unfortunately it doesn't work. I have the > following: > > > > > > > > > > >

Re: How to search a DataImportHandler solr index

2008-10-24 Thread Nick80
Hi Paul, thanks for the answer but unfortunately it doesn't work. I have the following: I have defined banner_type and size as: Now when I do a search with Solr, I get: 1 Campaign Name flash gif

RE: One document inserted but nothing showing up ? SOLR 1.3

2008-10-24 Thread sunnyfr
Even that doesn't work, How can I check properly, I did insert one document but I can't get it back ??? Feak, Todd wrote: > > Unless "q=ALL" is a special query I don't know about, the only reason you > would get results is if "ALL" showed up in the default field of the single > document that wa