I have a core that have documents with some of fields indexed but not stored (let's call them Group A fields). When I update other fields (indexed and stored, let's call them Group B fields), contents of the Group A fields are lost.
In this Solr documentation, Updating Parts of Documents, "The core functionality of atomically updating a document requires that all fields in your schema must be configured as stored (stored="true") or docValues(docValues="true") except for fields which are destinations, which must be configured as stored="false".
So, I must reindex the whole core every time when I update the Group B fields? Any work around?