mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FEATURE: configurable connection reaping settings
This commit is contained in:
@@ -289,21 +289,32 @@ module Discourse
|
||||
nil
|
||||
end
|
||||
|
||||
def self.start_connection_reaper(interval=30, age=30)
|
||||
def self.start_connection_reaper
|
||||
return if GlobalSetting.connection_reaper_age < 1 ||
|
||||
GlobalSetting.connection_reaper_interval < 1
|
||||
|
||||
# this helps keep connection counts in check
|
||||
Thread.new do
|
||||
while true
|
||||
sleep interval
|
||||
pools = []
|
||||
ObjectSpace.each_object(ActiveRecord::ConnectionAdapters::ConnectionPool){|pool| pools << pool}
|
||||
|
||||
pools.each do |pool|
|
||||
pool.drain(age.seconds)
|
||||
begin
|
||||
sleep GlobalSetting.connection_reaper_interval
|
||||
reap_connections(GlobalSetting.connection_reaper_age)
|
||||
rescue => e
|
||||
Discourse.handle_exception(e, {message: "Error reaping connections"})
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def self.reap_connections(age)
|
||||
pools = []
|
||||
ObjectSpace.each_object(ActiveRecord::ConnectionAdapters::ConnectionPool){|pool| pools << pool}
|
||||
|
||||
pools.each do |pool|
|
||||
pool.drain(age.seconds)
|
||||
end
|
||||
end
|
||||
|
||||
def self.sidekiq_redis_config
|
||||
{ url: $redis.url, namespace: 'sidekiq' }
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user