I am new to Solr technology and trying to re-index SOLR-4 data into another SOLR-6 master-slave setup. I have created a core in SOLR-6 with same name as that in SOLR-4 and copied schema.xml (solr-4) into SOLR-6's managed-schema of core.
Issue is that I have a date field that is indexed in solr-4 but not showing as indexed in solr-6.
Solr-4 schema snippet -
<field name="createdDate" type="tdate" indexed="true" stored="true" multiValued="false"/>
Record example in solr 4 -
<date name="createdDate">2017-04-21T20:26:33Z</date>
Solr-6 schema snippet after copying schema -
<field name="createdDate" type="tdates"/>
Record example in solr 6 -
<arr name="createdDate">
<date>2015-01-08T21:53:10Z</date>
</arr>
Can anybody please guide how can I effectively migrate solr-4 data to solr-6 with same schema?
If any more information is needed, please do mention in comments.
Thanks,
Vibhav