2013-07-07 00:30:52 -04:00
|
|
|
# See http://unicorn.bogomips.org/Unicorn/Configurator.html
|
|
|
|
|
2013-11-14 20:15:37 -05:00
|
|
|
# enable out of band gc out of the box, it is low risk and improves perf a lot
|
2014-02-16 00:44:51 -05:00
|
|
|
ENV['UNICORN_ENABLE_OOBGC'] ||= "1"
|
2013-11-12 23:28:39 -05:00
|
|
|
|
2013-07-07 00:30:52 -04:00
|
|
|
discourse_path = File.expand_path(File.expand_path(File.dirname(__FILE__)) + "/../")
|
|
|
|
|
|
|
|
# tune down if not enough ram
|
2013-10-30 01:33:08 -04:00
|
|
|
worker_processes (ENV["UNICORN_WORKERS"] || 3).to_i
|
2013-07-07 00:30:52 -04:00
|
|
|
|
|
|
|
working_directory discourse_path
|
|
|
|
|
2013-10-09 22:33:52 -04:00
|
|
|
# listen "#{discourse_path}/tmp/sockets/unicorn.sock"
|
2014-02-16 00:44:51 -05:00
|
|
|
listen (ENV["UNICORN_PORT"] || 3000).to_i
|
2013-07-07 00:30:52 -04:00
|
|
|
|
|
|
|
# nuke workers after 30 seconds instead of 60 seconds (the default)
|
|
|
|
timeout 30
|
|
|
|
|
|
|
|
# feel free to point this anywhere accessible on the filesystem
|
|
|
|
pid "#{discourse_path}/tmp/pids/unicorn.pid"
|
|
|
|
|
|
|
|
# By default, the Unicorn logger will write to stderr.
|
|
|
|
# Additionally, some applications/frameworks log to stderr or stdout,
|
|
|
|
# so prevent them from going to /dev/null when daemonized here:
|
|
|
|
stderr_path "#{discourse_path}/log/unicorn.stderr.log"
|
|
|
|
stdout_path "#{discourse_path}/log/unicorn.stdout.log"
|
|
|
|
|
|
|
|
# important for Ruby 2.0
|
|
|
|
preload_app true
|
|
|
|
|
|
|
|
# Enable this flag to have unicorn test client connections by writing the
|
|
|
|
# beginning of the HTTP headers before calling the application. This
|
|
|
|
# prevents calling the application for connections that have disconnected
|
|
|
|
# while queued. This is only guaranteed to detect clients on the same
|
|
|
|
# host unicorn runs on, and unlikely to detect disconnects even on a
|
|
|
|
# fast LAN.
|
|
|
|
check_client_connection false
|
|
|
|
|
|
|
|
initialized = false
|
|
|
|
before_fork do |server, worker|
|
2013-10-09 22:33:52 -04:00
|
|
|
|
2013-07-07 00:30:52 -04:00
|
|
|
unless initialized
|
|
|
|
# load up the yaml for the localization bits, in master process
|
|
|
|
I18n.t(:posts)
|
2013-11-12 23:28:39 -05:00
|
|
|
|
|
|
|
# load up all models and schema
|
|
|
|
(ActiveRecord::Base.connection.tables - %w[schema_migrations]).each do |table|
|
|
|
|
table.classify.constantize.first rescue nil
|
|
|
|
end
|
|
|
|
|
2013-11-19 20:35:33 -05:00
|
|
|
# router warm up
|
|
|
|
Rails.application.routes.recognize_path('abc') rescue nil
|
|
|
|
|
2013-07-07 00:30:52 -04:00
|
|
|
# get rid of rubbish so we don't share it
|
|
|
|
GC.start
|
2013-11-12 23:28:39 -05:00
|
|
|
|
|
|
|
initialized = true
|
|
|
|
|
|
|
|
supervisor = ENV['UNICORN_SUPERVISOR_PID'].to_i
|
|
|
|
if supervisor > 0
|
|
|
|
Thread.new do
|
|
|
|
while true
|
|
|
|
unless File.exists?("/proc/#{supervisor}")
|
|
|
|
puts "Kill self supervisor is gone"
|
|
|
|
Process.kill "TERM", Process.pid
|
|
|
|
end
|
|
|
|
sleep 2
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-07-07 00:30:52 -04:00
|
|
|
end
|
2013-10-09 22:33:52 -04:00
|
|
|
|
2013-07-07 00:30:52 -04:00
|
|
|
ActiveRecord::Base.connection.disconnect!
|
|
|
|
$redis.client.disconnect
|
|
|
|
|
|
|
|
|
|
|
|
# Throttle the master from forking too quickly by sleeping. Due
|
|
|
|
# to the implementation of standard Unix signal handlers, this
|
|
|
|
# helps (but does not completely) prevent identical, repeated signals
|
|
|
|
# from being lost when the receiving process is busy.
|
2013-10-09 22:33:52 -04:00
|
|
|
sleep 1
|
2013-07-07 00:30:52 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
after_fork do |server, worker|
|
2014-03-27 22:48:14 -04:00
|
|
|
Discourse.after_fork
|
2013-07-07 00:30:52 -04:00
|
|
|
end
|