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 wrote:
> How do you customize the RequestLog to include the query time, hits, and
> other stats. Here is my configura
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
opera
Make a common field with all of the text you want to index with a
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 wrote:
> Hi everyone,
>
> I am trying to build the spellcheck index with *IndexBasedSpellChecker*
>
'mergeFactor' should be 5 or 10, not 40k. This means Solr can open
thousands of small files and this will not work well.
ramBufferSizeMB is 1G. The entire solr has 1G allocated, so there may
be a lot of garbage collection. Try 50 to 100 megs for
ramBufferSizeMB.
1G is a little small for doing la
: 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
:
: -
: 0
...
: Response header returned by SOLR
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 wrote:
> 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 se
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. Tr
On Jun 11, 2010, at 9:44 AM, 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 http://www.intellog.com/blog/?p=208 to include
"&hl.si
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.
--
http:/
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
: 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
: 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
: 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
: 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
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 well.
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 w
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
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 proper
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.
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
"&hl.simple.pre=%3CB%3E&hl.simple.post=%3
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
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 i
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.
Erik
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
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 i
>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
did you update solrconfig.xml to add /itas query handler?
2010/6/11
> 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.
>
>
> -
> -
> 0
> 62
>
> -
> -
> 1.0
> -
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.
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:
~/src/solr-svn/trunk/solr/contrib/dataimpor
Chantal,
Thanks for the quick response:
Here is the field def from the schema for the field and the field type:
Je
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 a
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
the
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 develo
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:
optimize
solrconfig.xml,schema.xml,stopwords.txt,synonyms.txt,protwords.txt
http://ho
34 matches
Mail list logo