You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-user@lucene.apache.org by Bernd Fehling <be...@uni-bielefeld.de> on 2014/11/19 14:38:23 UTC

solrcloud collection info

Hi list,
with my first cloud (Solr 4.10.2) up and running (4 shards, 1 replica)
I can't find any info with Solr Admin about my collection, like summary
number of docs or summary index size of my collection.

Any idea where to find it?

Regards,
Bernd

Re: solrcloud collection info

Posted by Shawn Heisey <ap...@elyograg.org>.
On 11/19/2014 6:38 AM, Bernd Fehling wrote:
> with my first cloud (Solr 4.10.2) up and running (4 shards, 1 replica)
> I can't find any info with Solr Admin about my collection, like summary
> number of docs or summary index size of my collection.
> 
> Any idea where to find it?

The admin UI does not have cloud-wide information like that yet.  You
would need to visit enough nodes to find a replica of each shard, get
the info from each of those replicas, and add it up.

For a numDocs summary, it's faster to go to the query tab on any shard
replica in the collection and run the default search (*:*), then look
for numFound in the results.

There are plans underway to have collection info in the admin UI as well
as core info.  Since the 4.x source code branch was eliminated, bugfix
releases on 4.10 are all that will be seen on 4.x.  Collection info will
not show up in the admin UI until at least 5.0, and it may be later.

Hopefully 5.0 will be out by the end of the year, but I would not be
surprised if next year rolls around first.

Thanks,
Shawn