Sha256: a168c63343e8f28bac8e8395f33d655805db507dbcf20e7bcd577bcad7351834
Contents?: true
Size: 1.81 KB
Versions: 1
Compression:
Stored size: 1.81 KB
Contents
namespace :ts do desc "Links the sphinx database files by inserting magic code" task :symlink do run "sed -i 's,@DEPLOY_TO@,#{deploy_to},g' #{release_path}/script/link_sphinx.rb" run "#{release_path}/script/runner -e production #{release_path}/script/link_sphinx.rb" end desc "Index data for Sphinx using Thinking Sphinx's settings" task :in do run "cd #{current_path} && RAILS_ENV=production rake ts:in" end desc "Stop sphinx" task :stop do run "cd #{current_path} && RAILS_ENV=production rake ts:stop" end desc "Start sphinx" task :start do run "cd #{current_path} && RAILS_ENV=production rake ts:start" run "chown #{httpd_user}:#{httpd_group} #{deploy_to}/shared/log/searchd.production.pid" end desc "Restart sphinx" task :restart do stop start end desc "Stop sphinx, delete index files, reindex, and restart sphinx (last resort)" task :recover do stop run "cd #{deploy_to}/shared/db/sphinx/ && rm -rf production" run "cd #{current_path} && RAILS_ENV=production rake ts:in" start end desc """Try to discover if the indexes are corrupted. Checks for index filenames containing 'new'. \ If they exist then either the files are currently being rotated (after a reindex) or they \ are stale and need removing with ts:recover. Run this command a few times over a period of \ a minute to determine if the files disappear - indicating a successfully completed rotation \ and no need for recovery.""" task :recovery_required? do run "if [ x`find #{deploy_to}/shared/db/sphinx/production/ -name \*.new.\* | wc -l` == x\"0\" ]; then echo \"Sphinx indexes look intact. Run ts:in to regenerate.\"; else echo \"Sphinx index files *may* be stale. Wait 1 minute and run this command again. Consider running ts:recover if this message appears again\"; fi" end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
crossroads_capistrano-1.4.0 | lib/crossroads_capistrano/recipes/thinking_sphinx.rb |