Reputation: 81
I have configured solr and right now I am using two filed in Schema.xml:
After I start the indexing I have already index around 1000 of records now I want to add more fields in Schema.xml.
Is it possible to update current Schema.xml file without effecting the indexing data?
Upvotes: 0
Views: 994
Reputation: 13394
In every case you have to restart the solr/lucene instance. If you add new fields into the schema.xml (which mean: lucene will provide more/new informations) you have to refresh/rebuild the index.
Upvotes: 2