Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-10-04 18:09:33 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-10-04 18:09:33 +0300
commitbf6d126a58a66a11b2e4b9de89986174a1885105 (patch)
treebf2912b22073ed86969a56935d81cae0b73e710b /lib/gitlab/sidekiq_daemon
parent7928b47c8e06c1ac3f63d321a73dd527aea4e4c3 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/sidekiq_daemon')
-rw-r--r--lib/gitlab/sidekiq_daemon/memory_killer.rb21
1 files changed, 12 insertions, 9 deletions
diff --git a/lib/gitlab/sidekiq_daemon/memory_killer.rb b/lib/gitlab/sidekiq_daemon/memory_killer.rb
index 2323db61596..b8f86b92844 100644
--- a/lib/gitlab/sidekiq_daemon/memory_killer.rb
+++ b/lib/gitlab/sidekiq_daemon/memory_killer.rb
@@ -51,9 +51,10 @@ module Gitlab
def refresh_state(phase)
@phase = PHASE.fetch(phase)
- @current_rss = get_rss
- @soft_limit_rss = get_soft_limit_rss
- @hard_limit_rss = get_hard_limit_rss
+ @current_rss = get_rss_kb
+ @soft_limit_rss = get_soft_limit_rss_kb
+ @hard_limit_rss = get_hard_limit_rss_kb
+ @memory_total = get_memory_total_kb
# track the current state as prometheus gauges
@metrics[:sidekiq_memory_killer_phase].set({}, @phase)
@@ -178,6 +179,7 @@ module Gitlab
current_rss: @current_rss,
soft_limit_rss: @soft_limit_rss,
hard_limit_rss: @hard_limit_rss,
+ memory_total_kb: @memory_total,
reason: reason,
running_jobs: running_jobs)
@@ -214,18 +216,19 @@ module Gitlab
end
end
- def get_rss
- output, status = Gitlab::Popen.popen(%W(ps -o rss= -p #{pid}), Rails.root.to_s)
- return 0 unless status&.zero?
+ def get_memory_total_kb
+ Gitlab::Metrics::System.memory_total / 1.kilobytes
+ end
- output.to_i
+ def get_rss_kb
+ Gitlab::Metrics::System.memory_usage_rss / 1.kilobytes
end
- def get_soft_limit_rss
+ def get_soft_limit_rss_kb
SOFT_LIMIT_RSS_KB + rss_increase_by_jobs
end
- def get_hard_limit_rss
+ def get_hard_limit_rss_kb
HARD_LIMIT_RSS_KB
end