Reputation: 703
I have version field in schema file. I am hitting the below error message when creating core: Unable to create core [corename] Caused by: version field must exist in schema, using indexed="true" or docValues="true", stored="true" and multiValued="false" (version does not exist) any suggestions?
Upvotes: 0
Views: 531
Reputation: 703
figured out solr.LongField and solr.SortableLongField are deprecated. Used solr.TrieLongField and it works fine
Upvotes: 0