Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]
Hi friends,
After adding my field tags in the schema.xml file like below
<field name="_version_" type="plong" indexed="true" stored="true" multiValued="false" />
<field name="id" type="string" indexed="true" stored="true" required="true" multiValued="false" />
<field name="ip" type="text_general" indexed="true" stored="true"/>
<field name="request_date" type="date" indexed="true" stored="true"/>
<field name="request" type="text_general" indexed="true" stored="true"/>
<field name="department" type="string" indexed="true" stored="true" multiValued="false"/>
<field name="category" type="string" indexed="true" stored="true" multiValued="false"/>
<field name="product" type="string" indexed="true" stored="true" multiValued="false"/>
<field name="action" type="string" indexed="true" stored="true" multiValued="false"/>
And when i tried to create solr collection it is returning error like below
Unable to create core [live_logs15_shard1_replica_n1] Caused by: Unknown fieldType 'date' specified on field request_date"}}
It is not accepting date datatype that i specified. Suppose instead of date datatype if i specify string for the field request_date means, then i can create collection successfully, but the solr collection is not accepting date data type and not sure the reason besides this issue.
Thanks in advance.
Regards,
GTA
Created 04-16-2020 02:56 AM
Hi guys,
I found that, the reason for the solr to not accept my date Field is due to the missing date Field type allocation to the Field name: request date.in my schema.xml file.
After adding the below date field type, i could successfully create the solr collection
<fieldType name="date" class="solr.DateRangeField" ></fieldType>
Thanks,
Regards,
GTA
Created 03-28-2020 01:27 AM
Hi friends,
Any idea or update about this solr issue.
Brgds,
GTA
Created 04-16-2020 02:56 AM
Hi guys,
I found that, the reason for the solr to not accept my date Field is due to the missing date Field type allocation to the Field name: request date.in my schema.xml file.
After adding the below date field type, i could successfully create the solr collection
<fieldType name="date" class="solr.DateRangeField" ></fieldType>
Thanks,
Regards,
GTA