Hey, I have a solr cloud setup with 2 shards. I am trying to use solr's field grouping feature
My query looks like q=*:*&fq=field:value&group=true&group.field=otherValue The *ordering* of the groups *differs based on which shard the query is fired from* and it seems that docs located in that same shard (as the one from which query is fired) come up first. If I fire the query without grouping i.e q=*:*&fq=field:value , the ordering is consistent when the query is fired from either shard. The documents to be grouped are spread across the two shards. However, I have made sure documents within a group will be on the same shard by setting my id as fieldA!fieldB where I use fieldA to group the docs by. Thanks Sesha