David Hastings <[email protected]> wrote: > Would adding the docValues in the schema, but not reindexing, cause > errors? IE, only apply the doc values after the next reindex, but in the > meantime keep functioning as there were none until then?
As soon as you specify in the schema that a field has docValues=true, Solr treats all existing documents as having docValues enabled for that field. As there is no docValue content, DocValues-aware functionality such as sorting and faceting will not work for that field, until the documents has been re-indexed. - Toke Eskildsen
