Number of threads in SOLR grew up without blacklight

2017-09-01 Thread SOLR4189
t two weeks I tried twice to change my application to work without blacklight and with rsolr only, but each time number of threads in SOLR grew up and it worked very slowly. I checked thread dump (85% of all threads were BLOCKED facetExecutor threads). Does somebody know why it happens? -- Sent

Re: Threads in Solr

2008-03-01 Thread Chris Hostetter
: I'm running my tests on server with 4 double-kernel CPU. I was expecting : good improvements from multithreaded solution but I have speed 10th : times worse. Here is how I run those threads, I think I'm doing : something wrong, please advise: As i said, i'm not much of a threads expert, but

AW: Threads in Solr

2008-02-26 Thread Hausherr, Jens
okin [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 26. Februar 2008 16:57 An: solr-user@lucene.apache.org Betreff: Re: Threads in Solr I'm running my tests on server with 4 double-kernel CPU. I was expecting good improvements from multithreaded solution but I have speed 10th times worse. Here

Re: Threads in Solr

2008-02-26 Thread Evgeniy Strokin
SolrException.logOnce(SolrCore.log, "Exception in multi faceting", e); } } }; } . code truncated . } - Original Message From: Chris Hostetter <[EMAIL PROTECTED]> To: solr-user@lucene.apache.org Se

Re: Threads in Solr

2008-02-25 Thread Chris Hostetter
: Yes I do computing the same DocSet. Should it be the problem? Is any way to solve it? : In general in each thread I ran the same query and add different Filter Query. it's not neccessarily a problem, it's just that you may not get much benefit from prallelization if all of the worker threads

Re: Threads in Solr

2008-02-25 Thread Evgeniy Strokin
:02 AM Subject: Re: Threads in Solr : I was thinking may be I could run those queries not one by one but in : parallel, in separate threads. But it appears that it takes longer than : to run queries one by one. : Do you have any idea why? Do you think the idea to run those queries in : se

Re: Threads in Solr

2008-02-24 Thread Chris Hostetter
: I was thinking may be I could run those queries not one by one but in : parallel, in separate threads. But it appears that it takes longer than : to run queries one by one. : Do you have any idea why? Do you think the idea to run those queries in : separate threads is good in general? Are So

Threads in Solr

2008-02-20 Thread Evgeniy Strokin
Hello, I'm overwriting getFacetInfo(...) method from standard request handler (BTW: thanks for making a separate method for faceting :-)) What I need is to ran original query several times with filter query which I generate based on result from original query. Bellow is part of my code. I was thi