Re: Schema not replicating when using multicore property parameter

2010-06-11 Thread Peter Karich
Do you need it as property or could you use the solrconfig.xml directly? this worked in my case ... Regards, Peter. PS: Here is my snippet: requestHandler name=/replication class=solr.ReplicationHandler enable=${replication.master:false} lst name=master !--Replicate on 'startup'

False Positives?

2010-06-11 Thread jglazner
Ok, So let me preface this by saying I'm a noob to solr/lucene, so if I this is totally obvious.. please forgive me. I've been searching for a while now and can't seem to figure out what is going on. So here is the problem: I've got a little dev index build with some songs in it that i'm

Use of EmbeddedSolrServer

2010-06-11 Thread Robert Naczinski
Hello experts, we would like to use Solr in our search application. We want to index a large inventory in the database. The initial index is not a problem, but it should also updates the Db. These tables, we plan to provide you with triggers. The only problem is the Datenbnk on zOS. But we get

Re: False Positives?

2010-06-11 Thread Chantal Ackermann
Hi Jed, please paste the complete field definition of name_title from your schema.xml. You are using an analyzer that reduces your text in an undesired way, on both index and query side. You probably want String for names, or similar. Spoorenberg or Saprano are analyzed in the same way as

Re: False Positives?

2010-06-11 Thread jglazner
Chantal, Thanks for the quick response: Here is the field def from the schema for the field and the field type: fieldType name=text class=solr.TextField positionIncrementGap=100 analyzer type=index tokenizer class=solr.WhitespaceTokenizerFactory/ !-- in this example, we

Re: Resume Solr indexing CSV after exception

2010-06-11 Thread David George
I modified TikaEntityProcessor to ignore these exceptions.: If the Tika Entity processor encounters an exception it will stop indexing. I had to make two fixes to TikaEntityProcessor to work around this problem. From the Solr SVN trunk edit the file:

Re: False Positives?

2010-06-11 Thread Ahmet Arslan
solr.PhoneticFilterFactory looks suspicious. Can you verify this on solr admin analysis.jsp page. You can debug your analysis chain in this page. If you paste springsteen, it will show you output of each tokenizer/tokenfilter step by step.

Re: solr itas

2010-06-11 Thread olivier sallou
did you update solrconfig.xml to add /itas query handler? 2010/6/11 s...@icarinae.com Hi, When I type http://127.0.0.1:8080/solr/itas I receive this result in the webpage instead of html page. Does anyone know the reason and/or suggestion to fix it. ?xml version=1.0 encoding=UTF-8 ? -

Re: 3.1-dev spatial search problem

2010-06-11 Thread Darren Govoni
From what I can tell, the spatial stuff is incomplete and not entirely functional at this point. In the trunk I get the same error, but also I get results no matter what the distance is, so it was broke as of last week for me. On Wed, 2010-06-09 at 23:18 -0700, nickdos wrote: I'm running the

diff logging for each solr-core?

2010-06-11 Thread Alexander Rothenberg
Hi, was someone already successful in separating the complete logging of each solr-core? We plan to add more solr-cores to ouer current setup ( solr 1.4, running in tomcat 6.0.2) and it would be nice to have each core writing into its own logfiles. Currently, we use a log4j.xml in our web-app

Re: solr itas

2010-06-11 Thread Erik Hatcher
Yeah, certainly the /itas handler is there, or you'd get an error. The culprit is surely the missing definition of the VelocityResponseWriter in solrconfig.xml. What version of Solr are you running? It comes wired into trunk's example and the LucidWorks for Solr distro, but isn't wired

Re: Can query boosting be used with a custom request handlers?

2010-06-11 Thread Erik Hatcher
Can't answer this one definitively, as it would depend on what the request handler itself does with the q parameter. Is this using Solr's standard QueryComponent underneath? I don't know currently. But it is entirely up to the request handler on how parameters are handled.

Re: Use of EmbeddedSolrServer

2010-06-11 Thread findbestopensource
Refer http://wiki.apache.org/solr/Solrj#EmbeddedSolrServer Regards Aditya www.findbestopensource.com On Fri, Jun 11, 2010 at 2:25 PM, Robert Naczinski robert.naczin...@googlemail.com wrote: Hello experts, we would like to use Solr in our search application. We want to index a large

Re: Resume Solr indexing CSV after exception

2010-06-11 Thread Brad Greenlee
Why not just use the onError attribute on entity? The default is to abort, but you can also specify skip to skip the current document, or continue to continue as if the error never happened. See http://wiki.apache.org/solr/DataImportHandler#Schema_for_the_data_config Brad On Fri, Jun 11, 2010 at

Re: solr itas

2010-06-11 Thread sv
Hi Eric, Thanks for responding. Yeah actully it was directly from trunk..but I got it working after following your webminar yesterday. nice presentation... I have a followup question on that. As suggested at http://www.intellog.com/blog/?p=208 to include

Re: Resume Solr indexing CSV after exception

2010-06-11 Thread David George
cool I will try that. -- View this message in context: http://lucene.472066.n3.nabble.com/Resume-Solr-indexing-CSV-after-exception-tp878801p888605.html Sent from the Solr - User mailing list archive at Nabble.com.

RE: Schema not replicating when using multicore property parameter

2010-06-11 Thread Turner, Robbin J
Yes. I'm guess I'm not asking the question correctly. I need it as a property as I have 15 cores under this one jvm. They share the same solrconfig.xml. Each core has a different schema file named for that core. So hence using the property. I'm having a problem in that all the other

Re: diff logging for each solr-core?

2010-06-11 Thread Peter Karich
I asked this some weeks ago on the list here too, no ideas found so far :-/ Regards, Peter. Hi, was someone already successful in separating the complete logging of each solr-core? We plan to add more solr-cores to ouer current setup ( solr 1.4, running in tomcat 6.0.2) and it would be

Re: False Positives?

2010-06-11 Thread Walter Underwood
This filter chain takes a word, stems it, then converts the stem to a phonetic representation. 1. Only do one transformation for each field, like stemming or phonetic. 2. Stemming isn't useful for names. You are also removing stopwords, which can be a problem for names. Here is an example of

Re: Does SolrJ support nested annotated beans?

2010-06-11 Thread Mark Miller
I've started an issue building on the quick test attempt below. Issue 1945: https://issues.apache.org/jira/browse/SOLR-1945 -- - Mark http://www.lucidimagination.com On 6/4/10 10:12 PM, Thomas J. Buhr wrote: +1 Good question, my use of Solr would benefit from nested annotated beans as

Re: TrieRange for storage of dates

2010-06-11 Thread Chris Hostetter
: Subject: TrieRange for storage of dates : : What is the best practice? Perhaps we can amend the article at TrieDateField, as noted in the Solr 1.4 example schema. -Hoss

Re: Dynamic dataConfig files in DIH

2010-06-11 Thread Chris Hostetter
: Is there a way to dynamically point which dataConfig file to use to import : using DIH without using the defaults hardcoded in solrconfig.xml? what do you mean by dynamically ? ... it's a query param, so you can specify the file name in the url when you issue the command. -Hoss

Re: solr itas

2010-06-11 Thread Chris Hostetter
: Subject: solr itas : In-Reply-To: 981573.17596...@web111303.mail.gq1.yahoo.com : References: 981573.17596...@web111303.mail.gq1.yahoo.com http://people.apache.org/~hossman/#threadhijack Thread Hijacking on Mailing Lists When starting a new discussion on a mailing list, please do not reply to

Re: Can query boosting be used with a custom request handlers?

2010-06-11 Thread Chris Hostetter
: So it's possible to use both dismax and custom request handler in the same query? it *really* depends on the request handler ... if it uses the QParser framework for query parsing, then yes it should work fine -- but the request handler has to be written to work that way. -Hoss

ranking question

2010-06-11 Thread Geek Gamer
Hi , I want to reorder the results as per function like sum(w0*score, w1*field1, w2*field2, w3*filed3,..) I am using solr1.4 and it seems it does not support sort by function. How can this be achieved I tried using q=(query)^w0 (_val_:field1)^w1 (_val_:field2...)^w2 it adds more computations

MoreLikeThis and dynamicField

2010-06-11 Thread Peter Karich
Hi, it seems to me that the MoreLikeThis component doesn't work for dynamic fields. Is that correct? And it also doesn't work for fields which are indexed but not stored, right? e.g. 'text' where dynamic fields could be copied to. Or did I create an incorrect example? Regards, Peter. --

Re: solr itas

2010-06-11 Thread Erik Hatcher
On Jun 11, 2010, at 9:44 AM, s...@icarinae.com s...@icarinae.com wrote: Thanks for responding. Yeah actully it was directly from trunk..but I got it working after following your webminar yesterday. nice presentation... I have a followup question on that. As suggested at

Re: MoreLikeThis and dynamicField

2010-06-11 Thread Lance Norskog
MoreLikeThis works on any field you can name. You cannot give it a wildcard to go find dynamic fields; no query feature can do this (would be handy!). The field must have term vectors configured. In the solr/example/solr/conf schema, the 'includes' field has this set and you can do MLT on that.

Re: ranking question

2010-06-11 Thread Lance Norskog
Functions create the relevance score. Solr sorts by a function if it is part of the search string. On Fri, Jun 11, 2010 at 10:57 AM, Geek Gamer geek4...@gmail.com wrote: Hi , I want to reorder the results as per function like sum(w0*score, w1*field1, w2*field2, w3*filed3,..) I am using

Re: Issue with response header in SOLR running on Linux instance

2010-06-11 Thread Chris Hostetter
: I have been using SOLR for sometime now and had no issues till I was using : it in windows. Yesterday I moved the SOLR code to Linux servers and started ... : Response header returned by SOLR instance running in windows machine : : - lst name=responseHeader : int name=status0/int

Re: Solr spellcheck config

2010-06-11 Thread Lance Norskog
Make a common field with all of the text you want to index with a copyField directive: http://wiki.apache.org/solr/FAQ#How_do_I_use_copyField_with_wildcards.3F On Wed, Jun 9, 2010 at 6:22 AM, Bogdan Gusiev agre...@gmail.com wrote: Hi everyone, I am trying to build the spellcheck index with

Re: Solr Delta index questions

2010-06-11 Thread Lance Norskog
The delta import operation adds more records to the index, so the index gets bigger. Any index will be a little disorganized after the indexing pass. The 'optimize' operation collapses the messy index into a clean one. You can try running an optimize once a day until you learn more about

Re: Request log does not show QTime

2010-06-11 Thread Lance Norskog
Log4j has a nice template system for logging. You might be able to make a logging rule that rips out the query string but prints the rest. On Thu, Jun 10, 2010 at 4:01 PM, R Smith rsm...@gmail.com wrote: How do you customize the RequestLog to include the query time, hits, and other stats. Here