使用一台搜索服务器和多个客户端进行 Sphinx 增量索引
我有一个多主机环境,包含多个 Web 服务器和一个搜索服务器。
看起来增量索引只在服务器上工作,而 searchd 实际在服务器上工作。有没有办法让增量索引适用于所有 Web 服务器?
I've a multihost environment with multiple web-server and one search server.
It seems that delta indexing working only on the server, on which actually searchd works. Is there any way to make delta-indexing work for all web server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用延迟增量方法进行增量索引 - 并让延迟作业在与 searchd 和索引文件相同的服务器上运行。 Delta 索引必须集中化,这是管理它的最佳方式。
当然,如果您使用不同的作业处理库(resque、workling 等),那么编写您自己的行为方式相同的 ts-delayed-delta 版本应该不会太难。不过,Workling 和 TS 有一个宝石 - 也许还有 resque,也可能是其他。
You'll need to use the delayed delta approach for delta indexing - and have Delayed Job running on the same server as searchd and your index files. Delta indexing must be centralised, and this is the best way to manage it.
Of course, if you're using a different job processing library (resque, workling, etc), it shouldn't be too hard to write your own version of ts-delayed-delta that behaves in the same way. There is a gem for Workling and TS though - and maybe resque, possibly others.