1
votes

I created a Solr collection from some existing schema and configuration using:

-d server/solr/classiccore1/conf

While I can see schema.xml and solrconfig.xml in the Solr Admin UI for a solr collection I just created, I can't find it on the filesystem.

My SolrCloud contains 2 nodes and 1 embedded zookeeper instance.

Is there any way to modify schema.xml on filesystem rather then using relevant APIs?

1

1 Answers

3
votes

If you're using Solr in the cloud configuration, all the configuration files has to be available in the cluster - that means that the files are stored in Zookeeper, which keeps all the state and configuration for your cluster.

See Reloading Zookeeper solr conf (schema.xml), as well as the examples in the reference manual on how you upload a new configuration file or configuration set to Zookeeper.