我正在使用solr 4.10.2,因为完全导入工作正常,但是如果在mysql DB中进行任何插入/更新,则某种方式delta导入不起作用。 Delta导入不会出现任何错误,但从不提取任何更改。
我按照本网站提到的步骤进行了
http://wiki.apache.org/solr/DataImportHandler
数据-config.xml中
<dataConfig>
<dataSource autoCommit="true" driver="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost:3306/delta_import_handler" user="root" password="Gemini*123" />
<document name="Products">
<entity name="item" pk="ID" query="SELECT * FROM item " deltaImportQuery="select * from item where ID='${dih.delta.ID}'"
deltaQuery="select id from item where last_modified > '${dataimporter.last_index_time}'">
<field name="ID" column="id"/>
<field name="name" column="name"/>
<field name="manu" column="manu"/>
<field name="weight" column="weight"/>
<field name="price" column="price"/>
<field name="popularity" column="popularity"/>
<field name="includes" column="includes"/>
<field name="last_modified" column="last_modified" />
solrconfig.xml中
<requestHandler name="/dataimport"class="org.apache.solr.handler.dataimport.DataImportHandler">
<lst name="defaults">
<str name="config">data-config.xml</str>
</lst>
</requestHandler>
schema.xml中
<field name="id" type="text_general" indexed="true" stored="true"/>
<field name="name1" type="string" indexed="true" stored="true"/>
<field name="manu" type="string" indexed="true" stored="true"/>
<field name="weight" type="string" indexed="true" stored="true"/>
<field name="price" type="string" indexed="true" stored="true"/>
<field name="popularity" type="string" indexed="true" stored="true"/>
<field name="includes" type="string" indexed="true" stored="true"/>
<field name="last_modified" type="timestamp" indexed="true" stored="true"/>
答案 0 :(得分:0)
使用'$ {dih.last_index_time}'或STR_TO_DATE('$ {dih.last_index_time}','%Y-%m-%d%H:%i:%代替'$ {dataimporter.last_index_time}' s')
我正在像下面那样使用,因为我的MYSQL字段updated_at
是varchar。
STR_TO_DATE(updated_at,'%Y-%m-%dT%H:%i:%s.000Z')> STR_TO_DATE('$ {dih.last_index_time}','%Y-%m-%d% H:%i:%s')