Re: Search inside grouping list

2017-05-09 Thread Emir Arnautovic
Can you try reproducing this issue on fresh Solr, and if you manage to, 
can you please share documents and steps to reproduce it.


Which version of Solr do you run and do you have any custom plugins 
running on it?


Emir


On 09.05.2017 13:01, donjose wrote:

Yes. I am getting the same result for both q and  fq



--
View this message in context: 
http://lucene.472066.n3.nabble.com/Search-inside-grouping-list-tp4333488p4334206.html
Sent from the Solr - User mailing list archive at Nabble.com.


--
Monitoring * Alerting * Anomaly Detection * Centralized Log Management
Solr & Elasticsearch Support * http://sematext.com/



Re: Search inside grouping list

2017-05-09 Thread donjose
Yes. I am getting the same result for both q and  fq



--
View this message in context: 
http://lucene.472066.n3.nabble.com/Search-inside-grouping-list-tp4333488p4334206.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: Search inside grouping list

2017-05-09 Thread Emir Arnautovic

Do you get the same result if you use q instead of fq?


On 09.05.2017 07:38, donjose wrote:

Hi Emir,

Grouping by default is part of the configuration


  true
  assetid
  true


Don.



--
View this message in context: 
http://lucene.472066.n3.nabble.com/Search-inside-grouping-list-tp4333488p4334136.html
Sent from the Solr - User mailing list archive at Nabble.com.


--
Monitoring * Alerting * Anomaly Detection * Centralized Log Management
Solr & Elasticsearch Support * http://sematext.com/



Re: Search inside grouping list

2017-05-08 Thread donjose
Hi Emir,

Grouping by default is part of the configuration

   
 true
 assetid
 true 
   

Don.



--
View this message in context: 
http://lucene.472066.n3.nabble.com/Search-inside-grouping-list-tp4333488p4334136.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: Search inside grouping list

2017-05-08 Thread Emir Arnautovic

Hi Don,

This is query without grouping and returns expected results. But when 
you apply grouping by some field, you get wrong results? Can you share 
query results and query with grouping.


Emir


On 08.05.2017 14:28, donjose wrote:

Hi Emir,
Thank you for the response.

Please find the query which i am sending to SOLR
http://localhost:8983/solr/pema/select?fq=color:red=on=*:*=json

Regards,
Don.




--
View this message in context: 
http://lucene.472066.n3.nabble.com/Search-inside-grouping-list-tp4333488p4333936.html
Sent from the Solr - User mailing list archive at Nabble.com.


--
Monitoring * Alerting * Anomaly Detection * Centralized Log Management
Solr & Elasticsearch Support * http://sematext.com/



Re: Search inside grouping list

2017-05-08 Thread donjose
Hi Emir,
Thank you for the response.

Please find the query which i am sending to SOLR
http://localhost:8983/solr/pema/select?fq=color:red=on=*:*=json

Regards,
Don.




--
View this message in context: 
http://lucene.472066.n3.nabble.com/Search-inside-grouping-list-tp4333488p4333936.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: Search inside grouping list

2017-05-08 Thread Emir Arnautovic

Hi,

Can you please provide full query that you are sending to Solr.

Thanks,
Emir


On 08.05.2017 07:18, donjose wrote:

Could anyone can please reply for this query



--
View this message in context: 
http://lucene.472066.n3.nabble.com/Search-inside-grouping-list-tp4333488p4333870.html
Sent from the Solr - User mailing list archive at Nabble.com.


--
Monitoring * Alerting * Anomaly Detection * Centralized Log Management
Solr & Elasticsearch Support * http://sematext.com/



Re: Search inside grouping list

2017-05-07 Thread donjose
Could anyone can please reply for this query



--
View this message in context: 
http://lucene.472066.n3.nabble.com/Search-inside-grouping-list-tp4333488p4333870.html
Sent from the Solr - User mailing list archive at Nabble.com.


Search inside grouping list

2017-05-05 Thread donjose
Please help me to find a solution to search inside grouped result.

Grouped Result - One assetid (32) with 2 different color blue & red
===
grouped: {
assetid: {
matches: 619,
ngroups: 32,
groups: [
{
groupValue: 32,
doclist: {
numFound: 2,
start: 0,
docs: [
{
assetid: 32,
merchantid: 1,
color: "red",
manufacturerid: 3,
},
{
assetid: 32,
merchantid: 1,
color:"blue"
manufacturerid: 3,
}]}}]}


Here i need to return complete asset info (both blue and red) of assetid 32
if color = red. When i am trying to query color=red i am getting only color
blue not red.



--
View this message in context: 
http://lucene.472066.n3.nabble.com/Search-inside-grouping-list-tp4333488.html
Sent from the Solr - User mailing list archive at Nabble.com.