Re: how to have "shards" parameter by default

2010-06-10 Thread Joe Calderon
youve created an infinite loop, the shard you query calls all other shards and itself and so on, create a separate requestHandler and query that, ex localhost:7500/solr,localhost:7501/solr,localhost:7502/solr,localhost:7503/solr,localhost:7504/solr,localhost:7505/solr,localhost:7506/

Re: how to have "shards" parameter by default

2010-06-09 Thread Scott Zhang
I tried put "shards" into default request handler. But now each time if search, solr hangs forever. So what's the correct solution? Thanks. explicit 10 * 2.1 localhost:7500/solr,localhost:7501/solr,localhost:7502/solr,localhost:7503/solr,localhost

how to have "shards" parameter by default

2010-06-09 Thread Scott Zhang
Hi. I am running distributed search on solr. I have 70 solr instances. So each time I want to search I need to use ?shards=localhost:7500/solr,localhost..7620/solr It is very long url. so how can I encode shards into config file then i don't need to type each time. thanks. Scott