Unicorn продолжает терять связь с базой данных postgres на heroku
Я настроил приложение на героку, используя веб-сервер единорога. Моя база данных настроена на внешнем сервере (не на героку). Я настроил DATABASE_URL как требуется. Когда я запускаю консоль heroku, я могу успешно выполнять запросы на сервере. Однако, когда я перехожу на URL после загрузки единорога, я получаю эту ошибку:
2014-03-14T01:44:53.820853+00:00 app[web.1]: ActiveRecord::StatementInvalid (PG::ConnectionBad: connection is closed: SELECT a.attname, format_type(a.atttypid, a.atttypmod),
2014-03-14T01:44:53.820853+00:00 app[web.1]: pg_get_expr(d.adbin, d.adrelid), a.attnotnull, a.atttypid, a.atttypmod
2014-03-14T01:44:53.820853+00:00 app[web.1]: FROM pg_attribute a LEFT JOIN pg_attrdef d
2014-03-14T01:44:53.820853+00:00 app[web.1]: ON a.attrelid = d.adrelid AND a.attnum = d.adnum
2014-03-14T01:44:53.820853+00:00 app[web.1]: WHERE a.attrelid = '"currencies"'::regclass
2014-03-14T01:44:53.820853+00:00 app[web.1]: AND a.attnum > 0 AND NOT a.attisdropped
2014-03-14T01:44:53.820853+00:00 app[web.1]: ORDER BY a.attnum
2014-03-14T01:44:53.820853+00:00 app[web.1]: ):
2014-03-14T01:44:53.820853+00:00 app[web.1]: app/controllers/search_controller.rb:5:in `index'
Я настроил его в соответствии с инструкциями. Вот мой конфиг единорога.
worker_processes Integer(ENV["WEB_CONCURRENCY"] || 2)
timeout 25
preload_app true
before_fork do |server, worker|
Signal.trap 'TERM' do
puts 'Unicorn master intercepting TERM and sending myself QUIT instead'
Process.kill 'QUIT', Process.pid
end
if defined?(ActiveRecord::Base)
ActiveRecord::Base.connection.disconnect!
puts 'Unicorn disconnected from database'
end
# If you are using Redis but not Resque, change this
if defined?(Resque)
Resque.redis.quit
Rails.logger.info('Disconnected from Redis')
end
end
after_fork do |server, worker|
Signal.trap 'TERM' do
puts 'Unicorn worker intercepting TERM and doing nothing. Wait for master to send QUIT'
end
if defined?(ActiveRecord::Base)
config = Rails.application.config.database_configuration[Rails.env]
config['reaping_frequency'] = ENV['DB_REAP_FREQ'] || 10
config['pool'] = ENV['DB_POOL'] || 2
ActiveRecord::Base.establish_connection(config)
puts 'Unicorn connected to database'
end
# If you are using Redis but not Resque, change this
if defined?(Resque)
Resque.redis = $redis
Rails.logger.info('Connected to Redis')
end
end
Почему соединение закрывается даже после успешного соединения? (Я вижу Unicorn connected to database
в логах.
1 ответ
В Rails 3 + Resque мне пришлось добавить это:
Resque.after_fork do |job|
ActiveRecord::Base.verify_active_connections!
end
Бьюсь об заклад, что-то подобное будет работать для вас. Соединения в пуле истекают; и они должны быть очищены. Однако в Rails 4 произошли изменения, см. Здесь https://github.com/socialcast/resque-ensure-connected/issues/3