更改Gemfile时,Puma阶段重启失败

时间:2014-04-02 12:39:50

标签: ruby-on-rails deployment ruby-on-rails-4 capistrano puma

我正在使用Puma作为MRI 2.1.0上我的Rails 4项目的应用服务器。我正在使用Capistrano 3来处理部署。一切都像魅力一样。但是,我最近注意到我的部署过程存在问题。如果我改变我的Gemfile然后,puma无法完成分阶段重启,最终所有工人都被杀死了。我正在集群模式下运行Puma,并且preload_app!设置为true。

这是我的Capistrano配方,用于处理分阶段重启。

desc "Restart the application (phased restart)"
task :phased_restart do
  on roles(:app) do |h|
    execute "cd #{fetch(:current_path)} && bundle exec pumactl -S #{fetch(:puma_state)}     phased-restart", :pty => true
  end
end

这是Capistrano日志的截断输出。

DEBUG [4790766f] Command: cd /home/app/current && bundle exec pumactl -S /home/app/shared/tmp/pids/puma.state phased-restart
DEBUG [de00176a]    Command phased-restart sent success
 INFO [de00176a] Finished in 0.909 seconds with exit status 0 (successful).

这是我的config/puma.rb文件。

#!/usr/bin/env puma
require 'active_support'

environment 'production'
daemonize
pidfile '/home/app/shared/tmp/pids/puma.pid'
state_path '/home/app/shared/tmp/pids/puma.state'
stdout_redirect 'log/puma_stdout.log', 'log/puma_stderr.log'
threads 100, 100

bind 'tcp://0.0.0.0:9292'
bind 'unix:////home/app/shared/tmp/pids/puma.sock'

on_worker_boot do
  ActiveSupport.on_load(:active_record) do
  ActiveRecord::Base.connection.disconnect! rescue ActiveRecord::ConnectionNotEstablished
  ActiveRecord::Base.establish_connection(YAML.load_file("#{Rails.root}/config/database.yml")[Rails.env])
  end
end
workers 4
preload_app!

有没有人在我的puma配置文件中看到任何错误?

所以,目前我做bundle exec cap production deploy:start来启动Puma。但是,我希望在每种情况下都能实现零停机时间部署。

Puma可以继续使用旧的工作进程,以防无法启动新的衍生进程吗?

2 个答案:

答案 0 :(得分:3)

你知道preload_app!与分阶段重启相冲突?

证明:https://github.com/puma/puma/blob/0ea7af5e2cc8fa192ec82934a4a47880bdb592f8/lib/puma/configuration.rb#L333-L335

我认为首先你需要决定什么是你自己。

答案 1 :(得分:3)

要进行分阶段重启,您需要启用prune_bundler选项并禁用preload_app! 见https://github.com/puma/puma/blob/master/DEPLOYMENT.md#restarting

要使用Capistrano进行零停机时间部署,您可以使用capistrano3-puma gem以及以下选项:

set :puma_preload_app, false
set :puma_prune_bundler, true