at
org.apache.solr.cloud.OverseerTaskProcessor$Runner.run(OverseerTaskProcessor.java:505)
at
org.apache.solr.common.util.ExecutorUtil$MDCAwareThreadPoolExecutor.lambda$execute$0(ExecutorUtil.java:210)
at
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
id":"4","title":"green","author":"Jessie","text":"blue"},
{"id":"6","title":"red","author":"Jon","text":"green"}]
}
parsedquery_toString: "+((+(text:green | title:green) +(text:red | title:red))
author:jessie)"
Now AND is used for the group but the author is concatenated with OR. Why?
=== #6 test ===
q=(+green +red) +author:Jessie
response:
{ "numFound":3,"start":0,
"docs":[
{"id":"2","title":"green","author":"Jon Jessie","text":"red"},
{"id":"3","title":"yellow","author":"Jessie","text":"blue"},
{"id":"4","title":"green","author":"Jessie","text":"blue"}]
}
parsedquery_toString: "+((+(text:green | title:green) +(text:red | title:red))
+author:jessie)"
Still not the expected result.
=== #7 test ===
q=+(+green +red) +author:Jessie
response:
{ "numFound":1,"start":0,
"docs":[{"id":"2","title":"green","author":"Jon Jessie","text":"red"}]
}
parsedquery_toString: "+(+(+(text:green | title:green) +(text:red | title:red))
+author:jessie)"
Now the result is ok. But if all operators must be given then q.op=AND is
useless.
=== #8 test ===
q=green author:(Jon Jessie)
Found four results, expected are one. The query must changed to '+green
+author:(+Jon +Jessie)' to get the expected result.
Is this a bug in the extended dismax parser or what is the reason for not
consequently applying q.op=AND to the query expression?
Kind regards
Dirk Buchhorn
providing SolrIndexSearcher.java#L522
>
> Would you mind to raise a ticket?
>
> On Wed, Nov 5, 2014 at 6:51 PM, Dirk Högemann wrote:
>
> > Our production Solr-Slaves-Cores (we have about 40 Cores (each has a
> > moderate size about 10K documents to 90K documents)) produc
key:org.apache.solr.search.QueryResultKey@62340b01
:org.apache.solr.search.EarlyTerminatingCollectorException
Our relevant solrconfig is
18
2
What exactly does the exception mean?
Thank you!
-- Dirk --
Hello,
I have implemented a Solr EventListener, which should be fired after
committing.
This works fine on the Solr-Master Instance and it also worked in Solr 3.5
on any Slave Instance.
I upgraded my installation to Solr 4.2 and now the postCommit event is not
fired any more on the replication (S
Hi Andre,
thanks this did the job. I also had to enable edismax and set the default
parameter there - otherwise no highlighting at all.
Best
Dirk
Am 11.03.2013 um 13:59 schrieb André Widhani :
> Hi Dirk,
>
> please check
> http://wiki.apache.org/solr/Highlighti
ettings
explicit
10
300
on
main_content
html
200
2
true
tvComponent
Cheers
Dirk
Do you really need them all in the response to show them in the results?
As you define them as not stored now this does not seem so.
2012/12/23 Otis Gospodnetic
> Hi,
>
> You can specify them in solrconfig.xml for your request handler, so you
> don't have to specify it for each query unless you
You can define the fields to be returned with the fl parameter fl=the,
needed, fields - usually the score and the id...
2012/12/23 uwe72
> hi
>
> i am indexing pdf documents to solr by tika.
>
> when i do the query in the client with solrj the performance is very bad
> (40
> seconds) to load 100
; escaped or quoted characters which will then be seen by the analyzer
> tokenizer.
>
>
> -- Jack Krupansky
>
> -Original Message- From: Dirk Högemann
> Sent: Monday, December 17, 2012 11:01 AM
> To: solr-user@lucene.apache.org
> Subject: Re: Solr3.5 PatternTokenizer / Sea
ot; to "query", but that won't change your problem since Solr
> defaults to using the "index" analyzer if it doesn't "see" a "query"
> analyzer.
>
> -- Jack Krupansky
>
> -Original Message- From: Dirk Högemann
> S
+cl2Categories_NACE:bergbau
That is the relevant debug Output from the query.
2012/12/17 Dirk Högemann
> Hi,
>
> I am not sure if am missing something, or maybe I do not exactly
> understand the index/search analyzer definition and their execution.
>
> I have a field definition like this:
>
>
>
filter query, without using phrases, to achieve
the desired behavior?
Maybe local parameters are not the way to go here?
Best
Dirk
Ok.If there is no other way I will have some string parsing to do, but in
this case I am wondering a little bit about the chosen delimiter...as it is
central to nearly any path in directories, web resources etc.,right?
Best
Dirk
Am 30.10.2012 19:16 schrieb "Jack Krupansky" :
> M
e the relevant parts of the
queries on that field, which is somewhat ugly...
The field I search on is of type:
Best and thanks for any hints
Dirk
-processed deduplication.
Here you can find an entry point:
http://wiki.apache.org/solr/Deduplication
Dirk
-
my developer logs
--
View this message in context:
http://lucene.472066.n3.nabble.com/diversity-of-search-results-tp4014692p4014696.html
Sent from the Solr - User mailing list
er to
realize a complete productive enterprise search solution, you should talk to
some people with similar solutions, think of your own requirements in detail
and then multiply your estimation with 2. Then perhaps you have a realistic
estimate.
Dirk
-
my developer logs
--
> throw new IllegalArgumentException("**maxTokenCount is mandatory.");
> }
> maxTokenCount = Integer.parseInt(args.get(**maxTokenCountArg));
>
> Hmmm... try this "workaround":
>
> maxTokenCount="foo" foo="1"/>
>
> -- Jack Kru
at
org.apache.solr.schema.FieldTypePluginLoader$3.init(FieldTypePluginLoader.java:358)
at
org.apache.solr.util.plugin.AbstractPluginLoader.load(AbstractPluginLoader.java:159)
... 29 more
Any ideas?
Best
Dirk
. In order to provide index data you can try
to pre-process your data in order to save most important keywords in
seperated search fields. Then you boost those fields on query time.
Hope I could help, Dirk
-
erste Erfahrungen mit SOLR u. Vufind
--
View this message in context:
http://lucene
rks for me:
...
...
The MappingCharFilterFactory I have added in order to have a better support
of german "Umlaute". Concerning the Wildcards:
It is important that you use the ReversedWildcardFilterFactory only at index
time. All other Filters I also use at query time.
Perhaps
Perfect. I reindexed the whole index and everything worked fine. The
exception was just a little bit confusing.
Best
Dirk
Am 21.08.2012 14:39 schrieb "Jack Krupansky" :
> Did you explicitly run the IndexUpgrader before adding new documents?
>
> In theory, you don't hav
java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
at java.lang.Thread.run(Thread.java:662)
Is this a known bug, or is it maybe a Classpath problem I am facing here?
Best
Dirk Hoegemann
Interesting thing is that the only Tool I found to handle my pdf correctly
was pdftotext.
2012/2/10 Robert Muir
> On Fri, Feb 10, 2012 at 6:18 AM, Dirk Högemann
> wrote:
> >
> > Our suggest component and parts of our search is getting hard to use by
> > this. Any ot
Creutz feldt-
Ja kob-Krank heit
Stel lung nah men des Ar beits krei ses Blut
Our suggest component and parts of our search is getting hard to use by
this. Any other ideas?
Best
Dirk
2012/2/10 Jan Høydahl
> I think you need to control the parameter "enableAutoSpace" in PDFBox.
> Th
?
Best
Dirk
ng in
both fields would be ok,right?
Dirk
Am 07.02.2012 14:01 schrieb "Erick Erickson" :
> What happens if you do NOT inject? Setting inject="false"
> stores only the phonetic reduction, not the original text. In that
> case your false match on "13" would go away
t;puf" as the result of the
phonetic filter for this is 13.
(As a consequence the 13 is then also highlighted)
Does anyone has an idea how to handle this in a reasonable way that a
search for "puf" does not match 13 in the content?
Thanks in advance!
Dirk
Is ist better to collect a list of documents to add and commit these,
instead of using the auto-commit function?
Thanks in advance for any help!
Dirk Högemann
___
Schon gehört? WEB.DE hat einen genialen Phishing-Filter in die
Toolbar eingebau
29 matches
Mail list logo