Re: Listing Collections in Solr Cloud

2013-11-18 Thread Dave Seltzer
Thanks for the workaround advice on using the Zookeeper API. LIST is would definitely be at home inside the Collections API. Created https://issues.apache.org/jira/browse/SOLR-5466 in response to this thread. -Dave On Mon, Nov 18, 2013 at 2:15 PM, Anirudha Jadhav wrote: > i'll create one, i'

Re: Listing Collections in Solr Cloud

2013-11-18 Thread Anirudha Jadhav
i'll create one, i'll reach you if I need anything. thanks On Mon, Nov 18, 2013 at 2:13 PM, Mark Miller wrote: > We should have a list command in the collections api. I can help if > someone wants to make a JIRA issue. > > - Mark > > On Nov 18, 2013, at 2:11 PM, Anirudha Jadhav wrote: > > > yo

Re: Listing Collections in Solr Cloud

2013-11-18 Thread Mark Miller
We should have a list command in the collections api. I can help if someone wants to make a JIRA issue. - Mark On Nov 18, 2013, at 2:11 PM, Anirudha Jadhav wrote: > you can use the following 2 ways > > 1. ZK client API >you could just do a get_children on the zk node > /collections/ to ge

Re: Listing Collections in Solr Cloud

2013-11-18 Thread Anirudha Jadhav
you can use the following 2 ways 1. ZK client API you could just do a get_children on the zk node /collections/ to get all collections. or without ZK client API point this url at your solrCloud install http://host:port/solr/zookeeper?detail=true&path=%2Fcollections&_=1384801522456

Listing Collections in Solr Cloud

2013-11-18 Thread Dave Seltzer
Hello, I have a need to dynamically add collections to Solr cloud. The collections API makes this quite simple. However, when I'm done adding the new collection I need to update an Alias to include the new collection. To do this I need a list of current collections, but I don't see a way to do th