kusha
kusha

Reputation: 63

Is there a Solr collection API available for listing solr alias

I am trying to list certain collections only based on the wildcard.

Is there any Solr collection API available ?

Upvotes: 1

Views: 870

Answers (1)

Mysterion
Mysterion

Reputation: 9320

No, it's not possible, the only API call available right now for Solr is to list all collections by doing something like this:

http://localhost:8983/solr/admin/collections?action=LIST&wt=json

For more information -https://cwiki.apache.org/confluence/display/solr/Collections+API#CollectionsAPI-List

Upvotes: 2

Related Questions