solr做delta-import生成索引总是无效
我用delta-import生成索引总是无效,请赐教,db-config如下:
query="select id,appid, appname, intro from appstore_souapp_threepart_app"
deltaImportQuery="select id,appid, appname, intro from appstore_souapp_threepart_app where id ='${appentity.id}'">
<field column="id" name="id" />
<field column="appid" name="appid" />
<field column="appname" name="appname" />
<field column="intro" name="intro" />
</entity>
</document>
<document name="appinfo">
<entity name="appentity" pk="id"query="select id,appid, appname, intro from appstore_souapp_threepart_app"
deltaImportQuery="select id,appid, appname, intro from appstore_souapp_threepart_app where id ='${appentity.id}'">
<field column="id" name="id" />
<field column="appid" name="appid" />
<field column="appname" name="appname" />
<field column="intro" name="intro" />
</entity>
</document>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
schema.xml都配置了。目前搜索可以搜到,full-import 没问题,就是delta-import不行。appentity就是<entity name="appentity" pk="id" 从这里来的,id是主键,不知道这样用对不对?请指教
${appentity.id}这个是什么东西?
schema.xml这个里面相对应的字段设置好了吗?运行的时候还有没有其他的信息?你给出的东西少了一点
其他地方配置配置好了吗?
还有一种方法就是不用delta-import,请参看
http://my.oschina.net/u/148211/blog/26187,使用camel将索引任务和程序脱离。每当被索引体变化时,在文件系统的某个目录上生成一篇solr需要的xml文档,或者将xml文档发送到jms端。然后交给camel自动化处理即可。
其他地方配置配置好了吗?