在Capistrano的Reindex太阳黑子Solr

时间:2013-03-26 21:47:41

标签: ruby-on-rails capistrano sunspot sunspot-solr rvm-capistrano

我正在按照这个片段在Capistrano https://gist.github.com/doitian/1795439添加Sunspot Solr并且它有效,但是当我运行cap solr:reindex时它会显示一个问题(如预期的那样),询问我是否要删除所有索引,所以我回答“是”,但终端似乎在等待回复。

这是reindex的代码:

  desc "reindex the whole database"
  task :reindex, :roles => :app do
    stop
    run "rm -rf #{shared_path}/solr/data"
    start
    run "cd #{current_path} && #{rake} RAILS_ENV=#{rails_env} sunspot:solr:reindex" 
  end

这是消息:

  * executing "cd /home/user/rapps/app/current && bundle exec rake RAILS_ENV=production sunspot:solr:reindex"
    servers: ["9.9.9.9"]
    [9.9.9.9] executing command
 ** [out :: 9.9.9.9] *Note: the reindex task will remove your current indexes and start from scratch.
 ** [out :: 9.9.9.9] If you have a large dataset, reindexing can take a very long time, possibly weeks.
 ** [out :: 9.9.9.9] This is not encouraged if you have anywhere near or over 1 million rows.
 ** [out :: 9.9.9.9] Are you sure you want to drop your indexes and completely reindex? (y/n)
y

如何避免这条消息?另外,我想用Cron运行这个rake,那么我以前怎么能给出答案或设置默认配置呢?重新索引的最佳/有效方法是什么?

提前致谢。

3 个答案:

答案 0 :(得分:6)

我最近遇到了这个问题,发现这是一个有用的解决方法:

yes | bundle exec rake sunspot:reindex

答案 1 :(得分:4)

pull request现已合并在太阳黑子宝石上。您应该可以使用rake sunspot:reindex[,,true]来触发沉默重新索引。

再次memes save the planet

答案 2 :(得分:2)

在查看sunspot_rails来源后,目前无法强制通过此消息。见the rake task code defined here

已提交(一个月前)(Pull request here)拉取请求,用于支持无声选项的rake任务,但尚未合并。

我要么:

  1. 分叉太阳黑子宝石Repo located here并自行更改rake任务(然后更改你的环境Gemfile以使用你的分叉宝石)。
  2. 向您的Capistrano任务添加一个睡眠命令(类似于10秒,这个命令出现的时间应该更长),然后提供标准输入“y”