forked from ManageIQ/manageiq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiq_web_server_runner_mixin.rb
53 lines (42 loc) · 1.48 KB
/
miq_web_server_runner_mixin.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
module MiqWebServerRunnerMixin
extend ActiveSupport::Concern
def do_work
end
def do_before_work_loop
@worker.release_db_connection
end
def run
# The heartbeating will be done in a separate thread
worker_thread = Thread.new { super }
start_rails_server(worker.rails_server_options)
# when puma exits allow the heartbeat thread to exit cleanly using #do_exit
worker_thread.join
end
def start_rails_server(options)
require 'rails/command'
require 'rails/commands/server/server_command'
_log.info("With options: #{options.except(:app).inspect}")
Rails::Server.new(options).tap do |server|
Dir.chdir(Vmdb::Application.root)
server.start
end
rescue SignalException => e
raise unless MiqWorker::Runner::INTERRUPT_SIGNALS.include?(e.message)
ensure
@worker_should_exit = true
end
def do_heartbeat_work
log_long_running_requests
end
CHECK_LONG_RUNNING_REQUESTS_INTERVAL = 30.seconds
def log_long_running_requests
@last_checked_hung_requests ||= Time.now.utc
return if @last_checked_hung_requests > CHECK_LONG_RUNNING_REQUESTS_INTERVAL.ago
RequestStartedOnMiddleware.long_running_requests.each do |request, duration, thread|
message = "Long running http(s) request: '#{request}' handled by ##{Process.pid}:#{thread.object_id.to_s(16)}, running for #{duration.round(2)} seconds"
_log.warn(message)
Rails.logger.warn(message)
end
@last_checked_hung_requests = Time.now.utc
end
end