Fw: solr-user-unsubscribe

2017-02-01 Thread Syed Mudasseer
Can someone help me with unsubscription of solr emails?

I tried sending "unsubscribe" emails to "solr-user@lucene.apache.org" but no 
luck.


Thanks,

Mudasseer

____
From: Syed Mudasseer 
Sent: Monday, January 30, 2017 12:55 PM
To: solr-user@lucene.apache.org
Subject: solr-user-unsubscribe




solr-user-unsubscribe

2017-01-30 Thread Syed Mudasseer



Solr has multiple log lines for single search

2016-01-11 Thread Syed Mudasseer
Hi,
I have solr configured on cloud with the following details:
Every collection has 3 shards andEach shard consists of 3 replicas.
Whenever I search for any field in solr, having faceting and highlighting query 
checked,then I get more than 2 search logs stored in the log file. (sometimes, 
it goes up to 8 log lines).
I am trying to get the search terms entered by user, but due to duplicate 
records I am not able to decide which query is more appropriate to parse.
Here is an example of log lines(field search with faceting) gives me 3 results 
in the log,
INFO  - 2016-01-11 11:07:09.321; org.apache.solr.core.SolrCore; 
[mycollection_shard2_replica1] webapp=/solr path=/select 
params={f.ab_model.facet.limit=160&lowercaseOperators=true&facet=true&qf=description&distrib=false&hl.simple.pre=&wt=javabin&hl=false&version=2&rows=100&defType=edismax&NOW=1452510429317&shard.url=http://MyURL:8983/solr/mycollection_shard2_replica1/|http://MyURL:8983/solr/mycollection_shard2_replica3/|http://MyURL:8983/solr/mycollection_shard2_replica2/&fl=id&fl=score&df=search&start=0&q=MySearchTerm&f.ab_model.facet.mincount=0&_=9652510428630&hl.simple.post=&facet.field=ab_model&isShard=true&stopwords=true&fsv=true}
 hits=753 status=0 QTime=1 
INFO  - 2016-01-11 11:07:09.349; org.apache.solr.core.SolrCore; 
[mycollection_shard2_replica1] webapp=/solr path=/select 
params={lowercaseOperators=true&facet=false&ids=2547891056_HDR,3618199460_HDR,3618192453_HDR,3618277839_HDR,3618186992_HDR,3618081995_HDR,3618074192_HDR,3618189660_HDR,3618073929_HDR,3618078287_HDR,3618084580_HDR,3618075438_HDR,3618170375_HDR,3618195949_HDR,3618074030_HDR,3618085730_HDR,3618078288_HDR,3618072500_HDR,3618086961_HDR,3618170928_HDR,3618077108_HDR,3618074090_HDR,3618181279_HDR,3618188058_HDR,3618181018_HDR,3618199309_HDR,3618195610_HDR,3618281575_HDR,3618195568_HDR,3618080877_HDR,3618199114_HDR,3618199132_HDR,3618084030_HDR,3618280868_HDR,3618193086_HDR,3618275194_HDR,3618074917_HDR,3618195102_HDR,3618086958_HDR,3618084870_HDR,3618174630_HDR,3618075776_HDR,3618190529_HDR,3618192993_HDR,3618084217_HDR,3618176677_HDR,3618183612_HDR&qf=description&distrib=false&hl.simple.pre=&wt=javabin&hl=true&version=2&rows=100&defType=edismax&NOW=1452510429317&shard.url=http://MyURL:8983/solr/mycollection_shard2_replica1/|http://MyURL:8983/solr/mycollection_shard2_replica3/|http://MyURL:8983/solr/mycollection_shard2_replica2/&df=search&q=MySearchTerm&_=1452510428630&hl.simple.post=&facet.field=ab_model&isShard=true&stopwords=true}
 status=0 QTime=15 
INFO  - 2016-01-11 11:07:09.352; org.apache.solr.core.SolrCore; 
[mycollection_shard1_replica1] webapp=/solr path=/select 
params={lowercaseOperators=true&facet=true&indent=true&qf=description&hl.simple.pre=&wt=json&hl=true&defType=edismax&q=MySearchTerm&_=1452510428630&hl.simple.post=&facet.field=ab_model&stopwords=true}
 hits=2276 status=0 QTime=35 
If I have highlighted query checked, then I get more than 3 logs.
So my question is which line is more appropriate to get the search query 
entered by User?or Should I consider all of the log lines?