Highlight documents using group.query?

2018-10-18 Thread atawfik
Hi, if I am using a group.query to get documents, is there a way to highlight the documents matching group.query using the matching query itself? If I am not mistaken currently solr will highlight documents using the main query pass via the request q parameter? -- Sent from: http://lucene

Re: How does group.query work in solr?

2018-03-20 Thread Zheng Lin Edwin Yeo
Which version of Solr are you using? Also, what are the field types that you have used to index those fields? Regards, Edwin On 19 March 2018 at 21:08, Anjani Kumar wrote: > I am trying to achieve grouping according to the fields matched in a single > query. So in the group.query param

How does group.query work in solr?

2018-03-19 Thread Anjani Kumar
I am trying to achieve grouping according to the fields matched in a single query. So in the group.query parameter I am passing individual queries according to field names and in the query parameter, I am passing just the search term to be matched against the default copy fields. However It is

Sort group.query

2016-05-02 Thread Xam Uo
Hi all, Is there a way to define a label on group.query (for example something like group.query={!label=AGroup}&group.query={!label=BGroup} and then sort on this label? Thank you, Regards, Xam

AW: is group.query supported in solrcloud (4.8) ?

2014-11-10 Thread Timo Schmidt
y now: when you can use group.field=dd instead of group.query it works. And also it seems that this is an issue when you have one shard not matching your docst Cheers Timo Von: Giovanni Bricconi [giovanni.bricc...@banzai.it] Gesendet: Montag, 10. November

Aw: is group.query supported in solrcloud (4.8) ?

2014-11-10 Thread Timo Schmidt
y now: when you can use group.field=dd instead of group.query it works. And also it seems that this is an issue when you have one shard not matching your docst Cheers Timo   Gesendet: Montag, 10. November 2014 um 12:41 Uhr Von: "Giovanni Bricconi" An: solr-user Betreff: is group.que

is group.query supported in solrcloud (4.8) ?

2014-11-10 Thread Giovanni Bricconi
hello I have a collection 0_2014_10_11 made of three shards When I try a group.query, even specifying a single shard, i get this error "shard 0 did not set sort field values (FieldDoc.fields is null); you must pass fillFields=true to IndexSearcher.search on each shard" This is the re

Setting a Key/Tag/Label for each group.query Result Set

2014-07-30 Thread Carlos Maroto
Hi, I'm trying to get results in a single Solr call through multiple group.query definitions. I'm getting the results I want but, each group is presented under a "name" consisting of the query used for that group. I'd like to change the "name" of each group to

Re: SolrCloud group.query error "shard X did not set sort field values" or how i can set fillFields=true on IndexSearcher.search

2013-07-17 Thread Chris Hostetter
ot;The Grouping feature only works if groups are in the same shard. You must use the custom sharding feature to use the Grouping feature. " : Date: Mon, 15 Jul 2013 13:19:22 +0400 : From: Evgeny Salnikov : Reply-To: solr-user@lucene.apache.org : To: solr-user@lucene.apache.org : Subject: Re: S

Re: SolrCloud group.query error "shard X did not set sort field values" or how i can set fillFields=true on IndexSearcher.search

2013-07-15 Thread Erick Erickson
> > > 0 > 5 > > *:* > > > > ... > ... > > > 6. try group.query > http://node1:8983/solr/collection1/select?q=*:*&group=true&group.query=street:%D0%9A%D0%BE%D1%80%D0%BE%D0%BB%D0%B5%D0%B2%D0%B0 > >

Re: SolrCloud group.query error "shard X did not set sort field values" or how i can set fillFields=true on IndexSearcher.search

2013-07-15 Thread Evgeny Salnikov
lect?q=*:* 0 5 *:* ... ... 6. try group.query http://node1:8983/solr/collection1/select?q=*:*&group=true&group.query=street:%D0%9A%D0%BE%D1%80%D0%BE%D0%BB%D0%B5%D0%B2%D0%B0

Re: SolrCloud group.query error "shard X did not set sort field values" or how i can set fillFields=true on IndexSearcher.search

2013-07-13 Thread Erick Erickson
12, 2013 at 7:43 AM, Evgeny Salnikov wrote: > Hi! > > To repeat the problem, do the following > > 1. Start a node1 of SolrCloud (4.3.1 default configs) (java > -Dbootstrap_confdir=./solr/collection1/conf -Dcollection.configName=myconf > -DzkRun -jar start.jar) > 2. Import to col

SolrCloud group.query error "shard X did not set sort field values" or how i can set fillFields=true on IndexSearcher.search

2013-07-12 Thread Evgeny Salnikov
Hi! To repeat the problem, do the following 1. Start a node1 of SolrCloud (4.3.1 default configs) (java -Dbootstrap_confdir=./solr/collection1/conf -Dcollection.configName=myconf -DzkRun -jar start.jar) 2. Import to collection1 -> shard1 some data 3. Try group.query e.g. http://node1:8983/s

Re: What is group.query?

2013-01-03 Thread Yonik Seeley
>From http://wiki.apache.org/solr/FieldCollapsing "Return a single group of documents that also match the given query." ''' We can find the top documents that also match arbitrary queries with the group.query command (much like facet.query). For example, we coul

What is group.query?

2013-01-03 Thread Lance Norskog
What does group.query do? How is it different from q= and fq= ? Thanks.

Re: RE: Group.query

2012-09-26 Thread Ingar Hov
k what you need is facetting, or is this another thing? >> http://searchhub.org/dev/2009/09/02/faceted-search-with-solr/ >> >> Peter Kirk schrieb am 26.09.2012 12:18:32: >> >>> Von: >>> >>> Peter Kirk >>> >>> An: >>> >

Re: RE: Group.query

2012-09-26 Thread Ingar Hov
Kirk schrieb am 26.09.2012 12:18:32: > >> Von: >> >> Peter Kirk >> >> An: >> >> "solr-user@lucene.apache.org" >> >> Datum: >> >> 26.09.2012 12:19 >> >> Betreff: >> >> RE: Group.query >> >

Antwort: RE: Group.query

2012-09-26 Thread Johannes . Schwendinger
> 26.09.2012 12:19 > > Betreff: > > RE: Group.query > > Thanks. Yes I can do this - but doesn't it mean I need to execute a > query per group? > > What I really want to do (and I'm sorry I'm not so good at > explaining) is to execute one query for

RE: Group.query

2012-09-26 Thread Peter Kirk
ssage- From: Ingar Hov [mailto:ingar@gmail.com] Sent: 26. september 2012 11:57 To: solr-user@lucene.apache.org Subject: Re: Group.query I hope I understood the question, if so this may be a solution: Why don't you make the field group for product multiple? Example: If the product is a m

Re: Group.query

2012-09-26 Thread Ingar Hov
> I could look into that would be great. > Thanks, > Peter > > > -Original Message- > From: Aditya [mailto:findbestopensou...@gmail.com] > Sent: 26. september 2012 10:41 > To: solr-user@lucene.apache.org > Subject: Re: Group.query > > Hi > > You ar

RE: Group.query

2012-09-26 Thread Peter Kirk
: 26. september 2012 10:41 To: solr-user@lucene.apache.org Subject: Re: Group.query Hi You are doing AND search, so you are getting results prod1 and prod2. I guess, you should query only for group1 and another query for group2. Regards Aditya www.findbestopensource.com On Wed, Sep 26, 2012 at

Re: Group.query

2012-09-26 Thread Aditya
to execute a query which results in the groups with their > products. That is, the result should be something like: > > Group1 => Prod1, Prod2, Prod3 > Group2 => Prod1, Prod2, Prod4 > > How can I do this? > > I've been looking at group.query, but I don't thin

Group.query

2012-09-25 Thread Peter Kirk
ute a query which results in the groups with their products. That is, the result should be something like: Group1 => Prod1, Prod2, Prod3 Group2 => Prod1, Prod2, Prod4 How can I do this? I've been looking at group.query, but I don't think this is what I want. For example, "q=*: