2
내 sidekiq, heroku, redistogo, rails 4 구성에 문제가 있습니다. 나는 1 명의 dyno와 1 명의 heroku를 가지고있다. 나는 외부 API에 대한 요청을 받기 위해 작업자를 사용하고있다.Sidekiq 오류 : 서버에 연결할 수 없습니다 : 해당 파일 또는 디렉토리가 없습니다.
다음app[worker.1]: could not connect to server: No such file or directory
app[worker.1]: connections on Unix domain socket "/var/run/postgresql/.s.PGSQL.5432"?
app[worker.1]: Is the server running locally and accepting
가 여기 내 config/initializers/sidekiq.rb
if Rails.env.production?
Sidekiq.configure_client do |config|
config.redis = { url: ENV['REDISTOGO_URL'] }
end
Sidekiq.configure_server do |config|
config.redis = { url: ENV['REDISTOGO_URL'] }
Rails.application.config.after_initialize do
Rails.logger.info("DB Connection Pool size for Sidekiq Server before disconnect is: #{ActiveRecord::Base.connection.pool.instance_variable_get('@size')}")
ActiveRecord::Base.connection_pool.disconnect!
ActiveSupport.on_load(:active_record) do
config = Rails.application.config.database_configuration[Rails.env]
config['reaping_frequency'] = ENV['DATABASE_REAP_FREQ'] || 10 # seconds
# config['pool'] = ENV['WORKER_DB_POOL_SIZE'] || Sidekiq.options[:concurrency]
config['pool'] = 16
ActiveRecord::Base.establish_connection(config)
Rails.logger.info("DB Connection Pool size for Sidekiq Server is now: #{ActiveRecord::Base.connection.pool.instance_variable_get('@size')}")
end
end
end
end
입니다 여기 내 Procfile
web: bundle exec puma -C config/puma.rb
worker: bundle exec sidekiq -e production -C config/sidekiq.yml
내 config/sidekiq.yml
development:
:concurrency: 5
production:
:concurrency: 20
:queues:
- default
여기 여기 내 config/initializers/redis.rb
uri = URI.parse(ENV["REDISTOGO_URL"])
REDIS = Redis.new(:url => uri)
입니다 내 당신에게 Heroku 로그하지 Sidekiq와 PostgreSQL 서버와의주고 오류 사항에 따라 config/puma.rb
workers Integer(ENV['WEB_CONCURRENCY'] || 2)
threads_count = Integer(ENV['RAILS_MAX_THREADS'] || 1)
threads threads_count, threads_count
preload_app!
rackup DefaultRackup
port ENV['PORT'] || 3000
environment ENV['RACK_ENV'] || 'development'
before_fork do
puts "Puma master process about to fork. Closing existing Active record connections."
ActiveRecord::Base.connection.disconnect!
end
on_worker_boot do
ActiveRecord::Base.establish_connection
end
지금까지 'Rails.application.config.after_initialize do' 블록을 제거하고 제 제작 동시성을 5로 변경했는데 작동 중입니다. –
응용 프로그램이 postgres 서버에 연결할 수없는 것 같습니다. 내가 생각하는 sidekiq 문제가 아닙니다. heroku에 postgres 서버를 추가 했습니까? – DroidNoob