One good thing about kelvin it's more a programmatic task, so you could execute
the scripts after a few changes/deployment and get a general idea if the new
changes has impacted into the search experience; yeah sure the changing catalog
it's still a problem but I kind of like to be able to execu
> Thank you everybody for the links and explanations.
>
> I am still curious whether JMX exposes more details than the Admin UI?
> I am thinking of a troubleshooting context, rather than long-term
> monitoring one.
JMX is multi-purpose.
So, in principle, it can offer considerably more.
I've seen
Thank you everybody for the links and explanations.
I am still curious whether JMX exposes more details than the Admin UI?
I am thinking of a troubleshooting context, rather than long-term
monitoring one.
Regards,
Alex.
Personal website: http://www.outerthoughts.com/
Current project: http://ww
Can someone help with me this request
--
View this message in context:
http://lucene.472066.n3.nabble.com/Understand-Solr-Query-Execution-tp4134562p4134617.html
Sent from the Solr - User mailing list archive at Nabble.com.
On May 5, 2014 7:09 AM, "Alexandre Rafalovitch" wrote:
>
> I have religiously kept statement in my solrconfig.xml, thinking
> it was enabling the web interface statistics output.
>
> But looking at the server logs really closely, I can see that JMX is
> actually disabled without server present. A
Also, Zabbix and Nagios does read from JMX.
Zabbix has a "prototype" for SOLR which is a simple way to gather an amount of
data from solr and do, for example, archiving and plotting of cache values.
paul
Le 5 mai 2014 à 04:37, Ahmet Arslan a écrit :
> Hi,
>
> It looks like JMX is a standard
i think you should use group,stats
--
View this message in context:
http://lucene.472066.n3.nabble.com/facet-count-distinct-and-sum-group-by-field-tp4026931p4134609.html
Sent from the Solr - User mailing list archive at Nabble.com.
Currently, solr grouping (http://wiki.apache.org/solr/FieldCollapsing) sorts
groups "by the score of the top document within each group". E.g.
[...]
"groups":[{
"groupValue":"81cb63020d0339adb019a924b2a9e0c2",
"doclist":{"numFound":9,"start":0,"maxScore":4.729042,"docs":[
{
Currently, solr grouping (http://wiki.apache.org/solr/FieldCollapsing) sorts
groups "by the score of the top document within each group". E.g.
[...]
"groups":[{
"groupValue":"81cb63020d0339adb019a924b2a9e0c2",
"doclist":{"numFound":9,"start":0,"maxScore":4.729042,"docs":[
{
Hi,
It looks like JMX is a standard way to expose statistics etc. For easy
integration with existing jmx monitoring tools.
http://sematext.com/spm/ and http://newrelic.com read jmx data for instance.
Ahmet
On Monday, May 5, 2014 4:39 AM, Alexandre Rafalovitch
wrote:
I have religiously kept
I have religiously kept statement in my solrconfig.xml, thinking
it was enabling the web interface statistics output.
But looking at the server logs really closely, I can see that JMX is
actually disabled without server present. And the Admin UI does not
actually seem to care after a quick test.
On 5/4/2014 6:22 PM, blach wrote:
> I'm trying to make a small search engine based on android. when I'm calling
> solr by this
> "http://localhost:8983/solr/collection1/select?q="+loginValue+"&wt=json&indent=true";;
> (loginValue is the keywork im looking for)
Without seeing the error you're gett
Step back a bit here.
Did you manage to get Solr itself running on Android? I thought that
supposed to be not feasible!
You code seems to imply that you have, because you are connecting to localhost.
Alternatively - and more reasonably - if you have Solr running on the
server in the cloud, you n
Hello all.
I'm trying to make a small search engine based on android. when I'm calling
solr by this
"http://localhost:8983/solr/collection1/select?q="+loginValue+"&wt=json&indent=true";;
(loginValue is the keywork im looking for)
Its always giving me a fail message this is the code:
try{
How will a query like below will get executed, In which order
I understand that when this query is executed fields mentioned in fieldList
will be returned. What I don't understand is how the "samplestring1" and
"samplestring2" will get searched with the query fields specified
I think I will be ab
How will a query like below will get executed, In which order
I understand that when this query is executed fields mentioned in fieldList
will be returned. What I don't understand is how the "samplestring1" and
"samplestring2" will get searched with the query fields specified
I think I will be a
Hi Jack
I have updated the query correctly.
Please have a look
--
View this message in context:
http://lucene.472066.n3.nabble.com/Explain-Solr-Query-Execution-tp4134547p4134555.html
Sent from the Solr - User mailing list archive at Nabble.com.
Hi Jack
I have updated the query correctly.
Please have a look
--
View this message in context:
http://lucene.472066.n3.nabble.com/Explain-Solr-Query-Execution-tp4134547p4134554.html
Sent from the Solr - User mailing list archive at Nabble.com.
Thank you very much for the reply.
I made a mistake. Following is the query. Please have a look at it and let
me know how this works internally. I am new to Solr and I am trying to
understand how this works. This is something already there in the project I
am working
query=testuser.lastn...@hotm
fq stands for filter queries, not field queries. It must be a query that will
limit your result
and it is not responsible for scoring, so field^1.0 is invalid here.
The order of execution is that query q will be run against results of fq.
For example
q=samplestring1 & fq: samplestring2
will fir
A couple of preliminary comments...
1. fq stands for "filter query", not "Field Query".
2. Filter queries simply limit the documents that the underlying query can
match, but don't affect relevancy of any documents, so the boost factors you
have specified in the fq will simply be ignored.
3.
How will a query like below will get executed, In which order
q=samplestring1 AND samplestring2 fq= Field1^1.0 Field2^0.9 Field3^0.8
defType=edismax fl=samplefield1,samplefiled2,samplefiled3
I understand that when this query is executed fields mentioned in F1 will be
returned. What I don't unders
On 5/4/2014 9:30 AM, Hakim Benoudjit wrote:
> Ok. These files contain what you've requested:
>
> First (the xml error): http://pastebin.com/ZcagK3T7
> Second (java params): http://pastebin.com/JtWQpp6s
> Third (Solr version): http://pastebin.com/wYdpdsAW
Are you running with an index originally b
Ok. These files contain what you've requested:
First (the xml error): http://pastebin.com/ZcagK3T7
Second (java params): http://pastebin.com/JtWQpp6s
Third (Solr version): http://pastebin.com/wYdpdsAW
2014-05-04 14:23 GMT+01:00 Shawn Heisey :
> On 5/4/2014 6:06 AM, Hakim Benoudjit wrote:
> > I
On 5/4/2014 6:06 AM, Hakim Benoudjit wrote:
> I have a lot of scripts running *concurrently *& indexing on the same index
> (*collection*). This throws the following error:
>
> *SolrCore 'collection2' is not available due to init failure: Error opening
> new searcherorg.apache.solr.common.SolrExce
Hi guys,
I have a lot of scripts running *concurrently *& indexing on the same index
(*collection*). This throws the following error:
*SolrCore 'collection2' is not available due to init failure: Error opening
new searcherorg.apache.solr.common.SolrException:
SolrCore 'collection2' is not availab
26 matches
Mail list logo