Ich habe einige Probleme mit Java-Prozess und NRPE-Prüfungen. Wir haben einige Prozesse, die manchmal 1000% CPU auf einem 32-Kern-System verwenden. Das System reagiert ziemlich schnell, bis Sie a
ps aux
oder versuche irgendetwas in der / proc / pid # zu machen
[root@flume07.domain.com /proc/18679]# ls
hangs..
Eine Spur von ps aux
stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2819, ...}) = 0
stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=2819, ...}) = 0
stat("/dev/pts1", 0x7fffb8526f00) = -1 ENOENT (No such file or directory)
stat("/dev/pts", {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0
readlink("/proc/15693/fd/2", "/dev/pts/1", 127) = 10
stat("/dev/pts/1", {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 1), ...}) = 0
write(1, "root 15693 15692 0 06:25 pt"..., 55root 15693 15692 0 06:25 pts/1 00:00:00 ps -Af
) = 55
stat("/proc/18679", {st_mode=S_IFDIR|0555, st_size=0, ...}) = 0
open("/proc/18679/stat", O_RDONLY) = 5
read(5, "18679 (java) S 1 18662 3738 3481"..., 1023) = 264
close(5) = 0
open("/proc/18679/status", O_RDONLY) = 5
read(5, "Name:\tjava\nState:\tS (sleeping)\nT"..., 1023) = 889
close(5) = 0
open("/proc/18679/cmdline", O_RDONLY) = 5
read(5,
Der Java-Prozess funktioniert und wird problemlos abgeschlossen. Das Problem ist jedoch, dass unsere Überwachung nicht mehr funktioniert, da es zu Zeitüberschreitungen kommt, bis ein PS-Aux-Vorgang abgeschlossen ist.
Ich habe versucht, so etwas zu tun
nice -19 ionice -c1 /usr/lib64/nagios/plugins/check_procs -w 1:1 -c 1:1 -a 'diamond' -u root -t 30
ohne glück
BEARBEITEN
Systemspezifikationen
- 32-Kern Intel (R) Xeon (R) -CPU E5-2650 0 bei 2,00 GHz
- 128 g Widder
- 12 4 TB 7200-Laufwerke
- CentOS 6.5
- Ich bin nicht sicher, ob das Modell, aber der Anbieter ist SuperMicro
In diesem Fall beträgt die Belastung 1 Minute lang etwa 90-160 Fisch.
Der seltsame Teil ist, dass ich in jede andere / proc / pid # gehen kann und es funktioniert einwandfrei. Das System reagiert, wenn ich einspringe. Wie wenn wir über hohe Auslastung informiert werden, kann ich gut einspringen.
Noch eine Bearbeitung
Ich habe Deadline für Scheduler verwendet
[root@dn07.domain.com ~]# for i in {a..m}; do cat /sys/block/sd${i}/queue/scheduler; done
noop anticipatory [deadline] cfq
noop anticipatory [deadline] cfq
noop anticipatory [deadline] cfq
noop anticipatory [deadline] cfq
noop anticipatory [deadline] cfq
noop anticipatory [deadline] cfq
noop anticipatory [deadline] cfq
noop anticipatory [deadline] cfq
noop anticipatory [deadline] cfq
noop anticipatory [deadline] cfq
noop anticipatory [deadline] cfq
noop anticipatory [deadline] cfq
noop anticipatory [deadline] cfq
Mount sieht aus wie
[root@dn07.manage.com ~]# mount
/dev/sda3 on / type ext4 (rw,noatime,barrier=0)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
tmpfs on /dev/shm type tmpfs (rw)
/dev/sda1 on /boot type ext2 (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
/dev/sdb1 on /disk1 type xfs (rw,nobarrier)
/dev/sdc1 on /disk2 type xfs (rw,nobarrier)
/dev/sdd1 on /disk3 type xfs (rw,nobarrier)
/dev/sde1 on /disk4 type xfs (rw,nobarrier)
/dev/sdf1 on /disk5 type xfs (rw,nobarrier)
/dev/sdg1 on /disk6 type xfs (rw,nobarrier)
/dev/sdh1 on /disk7 type xfs (rw,nobarrier)
/dev/sdi1 on /disk8 type xfs (rw,nobarrier)
/dev/sdj1 on /disk9 type xfs (rw,nobarrier)
/dev/sdk1 on /disk10 type xfs (rw,nobarrier)
/dev/sdl1 on /disk11 type xfs (rw,nobarrier)
/dev/sdm1 on /disk12 type xfs (rw,nobarrier)
Ok, ich habe versucht, tuned zu installieren und habe es auf Durchsatzleistung eingestellt.
[root@dn07.domain.com ~]# tuned-adm profile throughput-performance
Switching to profile 'throughput-performance'
Applying deadline elevator: sda sdb sdc sdd sde sdf sdg sdh[ OK ] sdk sdl sdm
Applying ktune sysctl settings:
/etc/ktune.d/tunedadm.conf: [ OK ]
Calling '/etc/ktune.d/tunedadm.sh start': [ OK ]
Applying sysctl settings from /etc/sysctl.d/99-chef-attributes.conf
Applying sysctl settings from /etc/sysctl.conf
Starting tuned: [ OK ]
mount
aus?
tuned-adm profile enterprise-storage
Ziehen Sie in Betracht, den Befehl für den Nobarrier- und Deadline-Schalter zu verwenden. Was zeigt die dmesg|tail
Ausgabe? Sehen Sie E / A-Zeitüberschreitungen?