Merge branch 'puma-mem-counter' into 'master'
Add puma killer observer Closes #63037 See merge request gitlab-org/gitlab-ce!28992
This commit is contained in:
commit
65be6f1abf
6 changed files with 56 additions and 2 deletions
|
@ -42,7 +42,6 @@ bind 'unix:///home/git/gitlab.socket'
|
|||
workers 2
|
||||
|
||||
require_relative "/home/git/gitlab/lib/gitlab/cluster/lifecycle_events"
|
||||
require_relative "/home/git/gitlab/lib/gitlab/cluster/puma_worker_killer_initializer"
|
||||
|
||||
on_restart do
|
||||
# Signal application hooks that we're about to restart
|
||||
|
|
|
@ -125,6 +125,7 @@ When Puma is used instead of Unicorn, following metrics are available:
|
|||
| puma_max_threads | Gauge | 12.0 | Maximum number of worker threads |
|
||||
| puma_idle_threads | Gauge | 12.0 | Number of spawned threads which are not processing a request |
|
||||
| rack_state_total | Gauge | 12.0 | Number of requests in a given rack state |
|
||||
| puma_killer_terminations_total | Gauge | 12.0 | Number of workers terminated by PumaWorkerKiller |
|
||||
|
||||
## Metrics shared directory
|
||||
|
||||
|
|
|
@ -27,6 +27,9 @@ module Gitlab
|
|||
# is restarted already, thus periodically restarting workers shouldn't be
|
||||
# needed.
|
||||
config.rolling_restart_frequency = false
|
||||
|
||||
observer = Gitlab::Cluster::PumaWorkerKillerObserver.new
|
||||
config.pre_term = observer.callback
|
||||
end
|
||||
|
||||
PumaWorkerKiller.start
|
||||
|
|
24
lib/gitlab/cluster/puma_worker_killer_observer.rb
Normal file
24
lib/gitlab/cluster/puma_worker_killer_observer.rb
Normal file
|
@ -0,0 +1,24 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
module Gitlab
|
||||
module Cluster
|
||||
class PumaWorkerKillerObserver
|
||||
def initialize
|
||||
@counter = Gitlab::Metrics.counter(:puma_killer_terminations_total, 'Number of workers terminated by PumaWorkerKiller')
|
||||
end
|
||||
|
||||
# returns the Proc to be used as the observer callback block
|
||||
def callback
|
||||
method(:log_termination)
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def log_termination(worker)
|
||||
labels = { worker: "worker_#{worker.index}" }
|
||||
|
||||
@counter.increment(labels)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
27
spec/lib/gitlab/cluster/puma_worker_killer_observer_spec.rb
Normal file
27
spec/lib/gitlab/cluster/puma_worker_killer_observer_spec.rb
Normal file
|
@ -0,0 +1,27 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'spec_helper'
|
||||
|
||||
describe Gitlab::Cluster::PumaWorkerKillerObserver do
|
||||
let(:counter) { Gitlab::Metrics::NullMetric.instance }
|
||||
|
||||
before do
|
||||
allow(Gitlab::Metrics).to receive(:counter)
|
||||
.with(any_args)
|
||||
.and_return(counter)
|
||||
end
|
||||
|
||||
describe '#callback' do
|
||||
subject { described_class.new }
|
||||
|
||||
it 'increments timeout counter' do
|
||||
worker = double(index: 0)
|
||||
|
||||
expect(counter)
|
||||
.to receive(:increment)
|
||||
.with({ worker: 'worker_0' })
|
||||
|
||||
subject.callback.call(worker)
|
||||
end
|
||||
end
|
||||
end
|
|
@ -20,7 +20,7 @@ describe 'Puma' do
|
|||
File.write(config_path, config_lines)
|
||||
|
||||
cmd = %W[puma -e test -C #{config_path} #{File.join(__dir__, 'configs/config.ru')}]
|
||||
@puma_master_pid = spawn(*cmd)
|
||||
@puma_master_pid = spawn({ 'DISABLE_PUMA_WORKER_KILLER' => '1' }, *cmd)
|
||||
wait_puma_boot!(@puma_master_pid, File.join(project_root, 'tmp/tests/puma-worker-ready'))
|
||||
WebMock.allow_net_connect!
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue