PERF: run sidekiq with nice 5

This ensures that unicorn master forks of sidekiq run with a lower priority
than the webs. It means that a busy sidekiq is less likely to impact web
performance
This commit is contained in:
Sam 2019-01-09 09:29:14 +11:00
parent 7e4a43afc6
commit df460b4abd

View File

@ -43,6 +43,10 @@ class Demon::Sidekiq < Demon::Base
end
end
# Sidekiq not as high priority as web, in this environment it is forked so a web is very
# likely running
Discourse::Utils.execute_command('renice', '-n', '5', '-p', Process.pid.to_s)
cli.parse(options)
load Rails.root + "config/initializers/100-sidekiq.rb"
cli.run