Dhaval950
Dhaval950

Reputation: 81

Can I change Schema.xml file structure after starting the index in solr?

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

Answers (1)

The Bndr
The Bndr

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

Related Questions