[置顶] 【Apache Solr系列之二】Apache Solr 4.5.1及MYSQL数据增量索引

其实solr增量索引很简单,只要修改data-config.xml文件为以下内容就可以了!

(还不知道solr环境搭建以及mysql数据导入的可以看我上一篇博文:http://blog.csdn.net/weijonathan/article/details/16961299

<dataConfig>
        <dataSource name="apprank" type="JdbcDataSource" driver="com.mysql.jdbc.Driver" url="jdbc:mysql://10.68.237.28:3306/apprank" user="apprank" password="apprank"/>
        <document>
                <entity  dataSource="apprank" name="appstore_apps" pk="id"
                                query="select id,id_in_appstore,name,artist from apps"
                                deltaImportQuery="select * from apps where ID='${dih.delta.id}'"
                                deltaQuery="select id from apps where created_time > '${dih.last_index_time}'">
                        <field column="id" name="id"/>
                        <field column="id_in_appstore" name="id_in_appstore"/>
                        <field column="name" name="name"/>
                        <field column="artist" name="artist"/>
                </entity>
        </document>
</dataConfig>
进入web页面,执行增量索引建立,command选择delta-import,勾选commit、Optimize点击Exceute执行就可以了!

[置顶] 【Apache Solr系列之二】Apache Solr 4.5.1及MYSQL数据增量索引_第1张图片

你可能感兴趣的:(mysql,Solr,增量索引)