Hi All, I'm having an issue getting distributed grouping working on trunk (Mar 29, 2012).
If I send this query: http://localhost:8086/solr/core0/select/?q=*:*&group=false &shards=localhost:8086/solr/core0,localhost:8086/solr/core1,localhost:8086/solr/core2,localhost:8086/solr/core3,localhost:8086/solr/core4,localhost:8086/solr/core5,localhost:8086/solr/core6,localhost:8086/solr/core7 I get 260,000 results. As soon as I change to using grouping: http://localhost:8086/solr/core0/select/?q=*:*&group=true&group.field=group_field&shards=localhost:8086/solr/core0,localhost:8086/solr/core1,localhost:8086/solr/core2,localhost:8086/solr/core3,localhost:8086/solr/core4,localhost:8086/solr/core5,localhost:8086/solr/core6,localhost:8086/solr/core7 I only get 32,000 results. (the number of documents in a single core.) The field that I am grouping on is defined as: <field name="group_field" type="string" indexed="true" stored="true" multiValued="false" /> <fieldType name="string" class="solr.StrField" sortMissingLast="true" omitNorms="true"/> The document id: <field name="document_id" type="string" indexed="true" stored="true" required="true" /> <fieldType name="string" class="solr.StrField" sortMissingLast="true" omitNorms="true"/> <uniqueKey>document_id</uniqueKey> Anyone else experiencing this? Any ideas? Thanks, Cody