survey for "got inotify poll request in wrong process - disabling inotify" log message

RolandK

Renowned Member
Mar 5, 2019
981
210
88
51
hello,

i stumbled across "got inotify poll request in wrong process - disabling inotify" several times in my logs, on different systems

according to

https://forum.proxmox.com/threads/m...-request-in-wrong-process.109099/#post-568251

"it should not happen" an would be "rather elusive".


it's an error message in syslog and it's unnecessarily catching an admin's attention, who needs to get along with all those real error messages and false positives.

i have searched this forum and there are refernces in >80 messages to this log entries.

i'd be happy if some volunteers who like this to get fixed could please check , if it also happens on your systems.


# journalctl -u pveproxy -u pvedaemon|wc -l

should return some number >0

please report together with pveversion ( regardless of you get 0 or >0).


maybe we can put some light onto this

thank you!

ps:
it's NOT my intention to make anybody nervous, i just want to help that we get rid of this

# cat /root/pvenodes.txt | while read host;do echo $host;ssh -n $host 'journalctl -u pveproxy -u pvedaemon |grep "disabling inotify"|wc -l;pveversion';done
pve1-bnkw
82
pve-manager/7.2-7/d0dd0e85 (running kernel: 5.15.53-1-pve)
pve2-bnkw
4
pve-manager/7.2-7/d0dd0e85 (running kernel: 5.15.39-3-pve)
pve1
158
pve-manager/7.3-3/c3928077 (running kernel: 5.15.74-1-pve)
pve2
23
pve-manager/7.3-3/c3928077 (running kernel: 5.15.74-1-pve)
pve3
3
pve-manager/7.3-3/c3928077 (running kernel: 5.15.74-1-pve)
pve4
4
pve-manager/7.3-3/c3928077 (running kernel: 5.15.74-1-pve)
pve5
2
pve-manager/7.3-3/c3928077 (running kernel: 5.15.74-1-pve)
pve6
2
pve-manager/7.3-3/c3928077 (running kernel: 5.15.74-1-pve)
pve-pc1
655
pve-manager/7.4-4/4a8501a8 (running kernel: 5.15.107-2-pve)
pve-pc2
108
pve-manager/7.4-4/4a8501a8 (running kernel: 5.15.107-2-pve)
pve-pc3
121
pve-manager/7.4-4/4a8501a8 (running kernel: 5.15.107-2-pve)
pve-pc4
87
pve-manager/7.4-4/4a8501a8 (running kernel: 5.15.107-2-pve)
pve-pc5
111
pve-manager/7.4-4/4a8501a8 (running kernel: 5.15.107-2-pve)

1688142667410.png
 
I get:
# pveversion
pve-manager/8.1.3/b46aac3b42da5d15 (running kernel: 6.5.11-7-pve)
# journalctl -u pveproxy -u pvedaemon|wc -l
31391
 
And:
# journalctl -u pveproxy -u pvedaemon |grep "disabling inotify"|wc -l;pveversion
332
pve-manager/8.1.3/b46aac3b42da5d15 (running kernel: 6.5.11-7-pve)
 
I get this for pvecm:
pvecm[1377]: got inotify poll request in wrong process - disabling inotify

# journalctl -u pveproxy -u pvedaemon|wc -l
17378

# pveversion
pve-manager/8.1.10/4b06efb5db453f29 (running kernel: 6.5.13-3-pve)
 
Are you still collecting?
I've limited the query to the last month with (
Code:
journalctl -u pveproxy -u pvedaemon --since "1 month ago" | grep 'disabling inotify' | wc -l
)

server 1:
count: 252
pveversion: pve-manager/8.3.2/3e76eec21c4a14a7 (running kernel: 6.8.12-6-pve)

server 2:
count: 1
pveversion: pve-manager/8.3.4/65224a0f9cd294a3 (running kernel: 6.8.12-8-pve)

(these 2 servers are clustered)
 
Code:
journalctl -u pveproxy -u pvedaemon --since "1 month ago" | grep 'disabling inotify' | wc -l

Server: 191 counts
 
Bash:
# journalctl -u pveproxy -u pvedaemon|wc -l
2491
# journalctl -u pveproxy -u pvedaemon |grep "disabling inotify"|wc -l;pveversion
11
pve-manager/8.3.5/dac3aa88bac3f300 (running kernel: 6.8.12-8-pve)
 
Joining the survey:
Code:
~# journalctl -u pveproxy -u pvedaemon --since "1 month ago" | grep 'disabling inotify' | wc -l
3
~# journalctl -u pveproxy -u pvedaemon --since "2 month ago" | grep 'disabling inotify' | wc -l
4
~# journalctl -u pveproxy -u pvedaemon --since "3 month ago" | grep 'disabling inotify' | wc -l
8
~# journalctl -u pveproxy -u pvedaemon --since "4 month ago" | grep 'disabling inotify' | wc -l
17
~# journalctl -u pveproxy -u pvedaemon --since "5 month ago" | grep 'disabling inotify' | wc -l
24
~# journalctl -u pveproxy -u pvedaemon --since "6 month ago" | grep 'disabling inotify' | wc -l
27
 
root@vproxm:~# journalctl -u pveproxy -u pvedaemon|wc -l
445446
root@vproxm:~# pveversion
pve-manager/8.3.5/dac3aa88bac3f300 (running kernel: 6.8.12-9-pve)
root@vproxm:~#
 
root@vproxm:~# journalctl -u pveproxy -u pvedaemon|wc -l
Wrong command for "survey". You've searched the journal for ALL pveproxy & pvedaemon units (service).
You missed the grep-pipe part.

So command should have been:
Code:
journalctl -u pveproxy -u pvedaemon| grep 'disabling inotify' | wc -l
 
Wrong command for "survey". You've searched the journal for ALL pveproxy & pvedaemon units (service).
You missed the grep-pipe part.

So command should have been:
Code:
journalctl -u pveproxy -u pvedaemon| grep 'disabling inotify' | wc -l
root@vproxm:~# journalctl -u pveproxy -u pvedaemon| grep 'disabling inotify' | wc -l
137