Hi All,
Getting errors on Solr such as "copyfield dest: 'fred_str' is not an explicit
field and doesn't match a dynamic field"
The solrconfig has an entry
<lst name="copyField">
<str name="dest">*_str</str>
<int name="maxChars">256</int>
</lst>
This seems to be relation to Guessing field types
The schema does not contain an dynamic field entry for _str (it only has _s
for string type)
So if Solr is copying fields to its guessed type and also to _str (according to
docs) then shouldn't the dynamic field *_str be in schema?
OR
Should I edit the copyField entry "<str name="dest">*_str</str>" to be "<str
name="dest">*_s</str>" instead?
Thanks, Paul