I have a problem:
I use (it is a constraint) solr 4.10.3
I have already a collection with a lot of documents that uses a schema.xml with static and dynamic fields.
Unfortunately, in the file schema.xml
there are already dynamic fileds for all types (string, text, int, etc..) except for the type "date" .
Now, I need that in the collection must be present also a dynamic field with type "date".
Is it enough to add in the schema.xml (the type "date" is already defined in the schema.xml) the following item ?:
<dynamicField name="*_dt" type="date" indexed="true" stored="true"/>
So (important for me), after this adding of dynamic field, is it only necessary to perform the 2 proper commands of zkcli.sh (commands upconfig and linkconfig)?
Is it (after) also necessary the reindexing of the collection? (I hope no, maybe, because I added only a dynamic field (in the schema) and not static field, the reindexing is not necessary, I hope).
In case I need the reindexing of the collection, how can I perform it ?
Thanks for a possible help.
Regards.
Fabrizio