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
: 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
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
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
: 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
: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
: 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
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