I am working on Solr. I have multiple cores with same fields and types(same schema).Every core has its own schema(managed-schema) file in Solr .I want to add new field to the schema for all cores.
I am doing it via admin panel for each core manually.Is there any way that I can add new fields to schema of all cores at once.
Configure your cores to use a configset instead.
From the reference manual:
As far as I know there is no way to make an existing core use a config set, so you'll have to back up your configuration and cores, then remove the cores from Solr (do not delete the directories), then readd the cores with the
configSet
parameter set to the name of your configset.