我在让 solr 和 mysql 日期玩得很好时遇到问题。sent
如果我从架构中注释掉该字段,一切正常。但是,只要我在日期字段中添加回来,每个文档都会出现此错误。
org.apache.solr.common.SolrException: [doc=116] missing required field: sent
这是我配置 solr 的方式。我已经确保没有空/空日期并且没有。我也尝试过 dateTimeFormat=yyyy-MM-dd'T'hh:mm:ss
并且没有设置 dateTimeFormat 。对于模式中发送的类型,我还尝试了 date 和 tdate 。
数据配置.xml
<dataConfig>
<dataSource driver="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost:3306/hoplite" user="root" password="root"/>
<document>
<entity name="document" query="select * from document">
<field column="ID" name="id" />
<field column="RAW_TEXT" name="raw_text" />
<entity name="email" query="select * from email where document_id='${document.id}'">
<field column="TIME_SENT" name="sent" dateTimeFormat="yyyy-MM-dd'T'hh:mm:ss'Z'"/>
<field column="BODY" name="body" />
</entity>
</entity>
</document>
</dataConfig>
架构.xml
<field name="id" type="tint" indexed="true" stored="true" required="true" />
<field name="raw_text" type="text_general" indexed="true" stored="false" required="true" multiValued="true"/>
<field name="sent" type="date" indexed="true" stored="true" required="true" /> <!-- Import succeeds if I comment this line out -->
<field name="body" type="text_general" indexed="true" stored="true" required="true" />