sphinx 增量搜索索引并合并到 cron 作业中

sphinx delta search indexing and merge in cron job

我在 cron 作业中实现了增量索引,这是

*/2 * * * * /usr/bin/indexer --config /etc/sphinx/sphinx.conf indexer sph_idx_posts_delta --rotate >  /var/log/cronlog4.log 2>&1

*/3 * * * * /usr/bin/indexer --config /etc/sphinx/sphinx.conf indexer  --merge post sph_idx_posts_delta --rotate  > /var/log/cronlog5.log 2>&1

在 putty 中 运行 时两者都 运行 完美,但在 cron 作业中 运行 时在日志文件中给出以下错误。

Sphinx 2.2.9-id64-release (rel22-r5006)
Copyright (c) 2001-2015, Andrew Aksyonoff
Copyright (c) 2008-2015, Sphinx Technologies Inc (http://sphinxsearch.com)

using config file '/etc/sphinx/sphinx.conf'...
FATAL: there must be 2 indexes to merge specified

我必须对另外四个 table 做同样的事情,所有这些都给我同样的错误。我用谷歌搜索了这个错误,它说创建一个 bash 文件,然后 运行 该文件中的所有代码,但我也没有工作,我的 bash 文件没有工作。有帮助吗?

你的命令中有多余的部分 - 索引器,你已经在开头指定了命令 - /usr/bin/indexer。所以,正确的变体是:

*/2 * * * * /usr/bin/indexer --config /etc/sphinx/sphinx.conf sph_idx_posts_delta --rotate >  /var/log/cronlog4.log 2>&1
*/3 * * * * /usr/bin/indexer --config /etc/sphinx/sphinx.conf --merge post sph_idx_posts_delta --rotate  > /var/log/cronlog5.log 2>&1