Hello Experts, I am having issues with indexing Date field in SOLR 8.6.0. I am indexing from MongoDB. In MongoDB the Format is as follows
* "R_CREATION_DATE" : "12-Jul-18", "R_MODIFY_DATE" : "30-Apr-19", * In my Managed Schema I have the following entries. <field name="R_CREATION_DATE" type="rdate" indexed="true" stored="true"/> <field name="R_MODIFY_DATE" type="rdate" indexed="true" stored="true"/> <fieldType name="rdate" class="solr.DateRangeField"/>. I am getting an error in the Solr log. * org.apache.solr.common.SolrException: ERROR: [doc=mt_100] Error adding field 'R_MODIFY_DATE'='15-Jul-19' msg=Couldn't parse date because: Improperly formatted datetime: 15-Jul-19* Please let me know how to handle this usecase with Date format "12-JUL-18". what changes should I do to make it work ? Thanks Fiz N.