Details
-
Bug
-
Status: Resolved
-
Critical
-
Resolution: Duplicate
-
8.8
-
None
Description
performance degradation when querying multiple collections using aliases that points to multiple collection or calling the search handler directly with collection query param as follow
http://localhost:8983/solr/collection1/select?collection=collection1,collection2,collection3
in the first test i have queried a collection with about 40k docs, the throughput was ~3k req/sec
in the second test i have queried another collection with about 4k docs, the throughput was ~3.5k req/sec
in the third test i have queried an alias that points to both collections and viola! the throughput dropped to be ~200 req/sec!
i have tried not to use alias and use solrurl/solr/collection1/select?collections=collection2 and got the same result
notes:
- both collections have the same schema
- query and filter query are the same in all tests