We are using Solr for our searches, and sharding the data across several cores. We have one core per week of data, so we are dynamically creating and deleting cores each week.
How can I query a solr server for a list of all its cores? The JavaDoc says I can use coreAdminHandler.getCoreContainer().getCoreNames()
, but I'm not sure how to build a coreAdminHandler object.
Using SolrJ as you asked, here is how I did:
Just adding an update to the code sample above as several bits have been deprecated since Solr 4. The following code works on Solr 6.1.0.
A request to
http://localhost:8983/solr/admin/cores?action=STATUS
(replace your own host/port of course) will return all cores.