On Fri, Jun 12, 2009 at 10:28 PM, Garafola Timothy <timgaraf...@gmail.com>wrote:
> > So let's say I have 2 shards. The first shard has docs with creation > dates of this year. The Second shard contains documents from the > previous year. I run a solr query requesting 10 rows sorted by date > and get 11 from the first shard and 3 from the second. No, you cannot request specific number of results from a shard. That is something that Solr will manage itself. It requests start+rows number of documents from each shard to find the rows number of documents to be returned. If you really want to get a specific number of results from a shard, make a query to that shard alone. -- Regards, Shalin Shekhar Mangar.