- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我对 unicorn 零停机时间的要求感到困惑,更具体地说,如果它与 preload_app 选项无关。我知道,如果我将 preload_app 设置为 false,我可以简单地发送一个 HUP 信号,unicorn 将自动考虑新代码,但它会以零停机方式进行吗?
此外,如果内存不是问题,我是否需要使用 preload_app true?
最后,我看到了很多例子,其中有一个很大的 before fork block ,其中包含关于 oldpid 的代码。什么时候需要此代码?
谢谢
最佳答案
我设置它的方式是在重新启动 unicorn 服务器时使用类似 kill -USR2 $(cat/path/to/unicorn.pid)
的东西,在我的 unicorn 服务器配置中,像这样(基于 http://unicorn.bogomips.org/examples/unicorn.conf.rb ):
# feel free to point this anywhere accessible on the filesystem
pid "#{shared_path}/pids/unicorn.pid"
before_fork do |server, worker|
# the following is highly recomended for Rails + "preload_app true"
# as there's no need for the master process to hold a connection
defined?(ActiveRecord::Base) and
ActiveRecord::Base.connection.disconnect!
# This allows a new master process to incrementally
# phase out the old master process with SIGTTOU to avoid a
# thundering herd (especially in the "preload_app false" case)
# when doing a transparent upgrade. The last worker spawned
# will then kill off the old master process with a SIGQUIT.
old_pid = "#{server.config[:pid]}.oldbin"
if old_pid != server.pid
begin
sig = (worker.nr + 1) >= server.worker_processes ? :QUIT : :TTOU
Process.kill(sig, File.read(old_pid).to_i)
rescue Errno::ENOENT, Errno::ESRCH
end
end
end
这将启动新的 worker 并逐渐关闭旧的。
关于ruby-on-rails - Unicorn - 使用 HUP 实现零停机?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15057598/
好的,所以我正在尝试使用 unicorn 设置生产服务。 当我尝试通过我编写的脚本启动 unicorn 服务器时,它会启动 2 个主实例。 这只发生在我用给定的“-E 生产”启动它时。 我开始 uni
我使用 'unicorn-worker-killer' gem 并从这里为 ruby GC 做了一些额外的修改 http://blog.newrelic.com/2013/05/28/unicor
我有点卡在工头设置中设置 unicorn worker 的数量 web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb 然后在运行时 fore
我已经在 unicorn 上部署了一个 rails 应用程序,并且正在使用 Capistrano 来管理部署。符号链接(symbolic link) tmp/sockets/unicorn.sock
我已按照 DigitalOcean 指南中的步骤进行操作 here和 here使用 nginx 和 Unicorn 设置 Sinatra 服务器。我在倒数第二步: start the Unicorn
我正在尝试通过 Nginx 和 Unicorn 运行我的 Rails 应用程序,当我尝试运行 service unicorn start 时它告诉我我失败了 master failed to star
有很多研究人员观察着世界上最后剩下的unicorns,即Easter Island。每天,研究人员记录他们发现的 unicorn ,发现日期,每个 unicorn 的婴儿数量以及发现时是否喝醉了。这些
unicorn 接受 listen允许设置 backlog 的配置以毫秒为单位,以防 worker 忙。减小此值允许路由器在忙碌时将请求发送给另一个工作人员。 彪马有类似的东西吗?我找不到这样的东西。
我正在尝试在 heroku 上部署我的 django 应用程序。按照官方文档的步骤操作后,我启动的dyno老是死机。然后我把整个过程都走一遍,我觉得问题可能出在gunicorn部分。按照说明,我将 P
我有这个文件 rails_env = ENV['RAILS_ENV'] || 'development' rails_root = ENV['RAILS_ROOT'] || "/home/luiz/r
在使用 Heroku 时,我发现他们使用环境变量进行服务器本地配置的方法非常棒。现在,在设置自己的应用程序服务器时,我发现自己想知道复制它有多难。 我正在部署一个 sinatra 应用程序,使用 Un
我正在使用 Capistrano 将 Ruby on Rails 应用程序部署到 Linode VPS。我使用 Unicorn 作为应用程序服务器,使用 Nginx 作为代理。我的问题是,由于明显的权
我正在调试我们应用程序中的一些 Posgtres 连接泄漏。几天前,我们突然超过了 100 个连接,这是不应该的 - 因为我们只有 8 个 unicorn worker 和一个 sidekiq 进程(
我正在运行堆栈 nginx+unicorn+rails 3.2 当我运行时 bundle exec unicorn_rails -c config/unicorn.rb -E development
我正在为 Django 项目(Ubuntu 14.04 机器)使用带有 nginx 反向代理的 gunicorn 19.7.1 appserver。 ps aux | grep gunicorn |
我不知道 unicorn 出了什么问题,它不想启动。任何帮助表示赞赏 ubuntu@ip-172-31-15-195:~/www/tf/current$ RAILS_ENV=production bu
我需要你的帮助! 我已经在 Ubuntu 12.04 中部署了我的 Rails 应用程序,使用 Nginx、MySQL、Solr 和 Unicorn。 每个提到的服务都已启动,而不是 unicorn,
我正在使用Rails 3.2 + unicorn + postgres DB,但我有一个问题-unicorn如何处理DB连接? 我的理解: unicorn 主进程 fork X子进程。 每个子进程设置
我有一个 RubyOnRails 项目,并在 Ubuntu 服务器上的 nginx 上使用 Unicorn 部署它。 如果我更改配置文件之一,我需要重新启动 Unicorn,但是当我杀死 Unicor
我正在使用 gunicorn 运行 flask 应用程序(rest api),我几乎每 30 秒就会看到一批 [CRITICAL] WORKER TIMEOUT (pid:14727) . 我的设置如
我是一名优秀的程序员,十分优秀!