Empty shard1 - -:{"shard1":[]} cannot add new replicas

2021-02-05 Thread Dirk Wintergruen
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)

Extended Dismax Query Parser with AND as default operator

2015-06-18 Thread Dirk Buchhorn
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

Re: EarlyTerminatingCollectorException

2014-11-06 Thread Dirk Högemann
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

EarlyTerminatingCollectorException

2014-11-05 Thread Dirk Högemann
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 --

Solr4.2 PostCommit EventListener not working on Replication-Instances

2013-07-25 Thread Dirk Högemann
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

Re: AW: Highlighting problems

2013-03-11 Thread Dirk Wintergruen
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

Highlighting problems

2013-03-11 Thread Dirk Wintergruen
ettings explicit 10 300 on main_content html 200 2 true tvComponent Cheers Dirk

Re: Bad performance while query pdf solr documents

2012-12-23 Thread Dirk Högemann
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

Re: Bad performance while query pdf solr documents

2012-12-23 Thread Dirk Högemann
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

Re: Solr3.5 PatternTokenizer / Search Analyzer tokenizing always at whitespace?

2012-12-17 Thread Dirk Högemann
; 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

Re: Solr3.5 PatternTokenizer / Search Analyzer tokenizing always at whitespace?

2012-12-17 Thread Dirk Högemann
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

Re: Solr3.5 PatternTokenizer / Search Analyzer tokenizing always at whitespace?

2012-12-17 Thread Dirk Högemann
+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: > > >

Solr3.5 PatternTokenizer / Search Analyzer tokenizing always at whitespace?

2012-12-17 Thread Dirk Högemann
filter query, without using phrases, to achieve the desired behavior? Maybe local parameters are not the way to go here? Best Dirk

Re: Forwardslash delimiter.Solr4.0 query for path like /Customer/Content/*

2012-11-01 Thread Dirk Högemann
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

Forwardslash delimiter.Solr4.0 query for path like /Customer/Content/*

2012-10-30 Thread Dirk Högemann
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

Re: "diversity" of search results?

2012-10-19 Thread 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

Re: Building an enterprise quality search engine using Apache Solr

2012-10-19 Thread dirk
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 --

Re: solr4.0 LimitTokenCountFilterFactory NumberFormatException

2012-10-17 Thread Dirk Högemann
> throw new IllegalArgumentException("**maxTokenCount is mandatory."); > } > maxTokenCount = Integer.parseInt(args.get(**maxTokenCountArg)); > > Hmmm... try this "workaround": > > maxTokenCount="foo" foo="1"/> > > -- Jack Kru

solr4.0 LimitTokenCountFilterFactory NumberFormatException

2012-10-17 Thread Dirk Högemann
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

Re: how to boost query term after tokenizer

2012-10-17 Thread 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

Re: WordDelimiterFilter and the dot character

2012-10-17 Thread dirk
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

Re: Auto commit exception in Solr 4.0 Beta

2012-08-21 Thread Dirk Högemann
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

Auto commit exception in Solr 4.0 Beta

2012-08-21 Thread Dirk Högemann
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

Re: Solr / Tika Integration

2012-02-10 Thread Dirk Högemann
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

Re: Solr / Tika Integration

2012-02-10 Thread Dirk Högemann
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

Solr / Tika Integration

2012-02-10 Thread Dirk Högemann
? Best Dirk

Re: Phonetic search and matching

2012-02-07 Thread Dirk Högemann
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

Phonetic search and matching

2012-02-06 Thread Dirk Högemann
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

Auto-Commit and failures / schema violations

2011-07-29 Thread Dirk Högemann
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