当 Google 搜索 OOM 分数时,所有顶部链接似乎都表明该值必须在 -1000 到 1000 之间。
我尝试用一个简单的方法验证这一点cat /proc/*/oom_score | sort -n | less
,结果遇到了从 0 到 30132501 的各种值,其中绝大多数在 1000 到 10000 之间。
我该如何解释这一点?
据我所知,没有什么可以手动调整oom_score
文件。
系统信息:
%uname -a
Linux hhgw16 2.6.18-371.el5 #1 SMP Tue Oct 1 08:35:08 EDT 2013 x86_64 x86_64 x86_64 GNU/Linux
% lsb_release -a
LSB Version: :core-4.0-amd64:core-4.0-ia32:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-ia32:printing-4.0-noarch
Distributor ID: CentOS
Description: CentOS release 5.10 (Final)
Release: 5.10
Codename: Final
答案1
这可能只是旧内核中的一个历史怪异现象。我刚刚尝试使用我的内核(类似于普通版本 5.4.124)并得到如下结果:
$ cat /proc/*/oom_score | sort -n | uniq -c
274 0
9 1
2 2
1 3
2 4
1 5
1 10
2 17
1 20
1 37
1 42
3 200
1 201
1 202
1 205
1 212
4 300
11 301
16 302
24 303
3 304
3 305
1 306
1 310
1 313
(第一列是具有该值的进程计数,第二列是该oom_score
值,如您所见,我的系统不会超过 1000。)