On 4/11/2017 2:19 PM, Scruggs, Matt wrote: > I’m updating our schema.xml file with 1 change: deleting a field. > > Do I need to re-index all of my documents in Solr, or can I simply reload my > collection config by calling: > > http://mysolrhost:8000/solr/admin/collections?action=RELOAD&name=mycollection
Deleting a field won't require a reindex, but any data in that field will remain in your index until you do. This probably can affect the performance of the index, but unless you're running with insufficient resources, you may not even notice. Thanks, Shawn