• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Resolved a recurrent task generating a lot of IO delays

Alban Staehli

Regular Pleskian
Hi,

Just running into some IO delays on daily basis, and I can see this command being run on my Plesk box (CentOS Linux 7.9.2009 & Plesk Obsidian Version 18.0.39 Update #2)
find / -maxdepth 7 -path /proc -prune -o -path /sys -prune -o -type f -size +50 -printf %s?t%Tc?t%p n

Would anyone know what it's related to? I could not find what is triggering this command so far.
The only page I could find with same command shown in some log dumps is here: Plesk Dovecot wird "angegriffen" geht down

Thank you for your thoughts.
 
This is done by updatedb, which renews the database for locate. Package might be called slocate.
 
This is done by updatedb, which renews the database for locate. Package might be called slocate.
I've actually searched for any kind of locate, mlocate or slocate packages without luck...
yum list installed | grep locate

There's nothing with such name. Also can't see updatedb conf file within /etc.
Any other thoughts of where I shall look?
 
I've actually searched for any kind of locate, mlocate or slocate packages without luck...
yum list installed | grep locate

There's nothing with such name. Also can't see updatedb conf file within /etc.
Any other thoughts of where I shall look?
Plz ignore, issue was with another container running on same host - locate wasn't installed on the Plesk host.
Thx again @mow for pointing out to locate!
 
Me again, after disabling all updatedb / locate within multiple containers, I realized that the command highlighted earlier was still being run.
I could finally trace it back, and it's running by Plesk!
Parents commands being:
  • bash /usr/local/psa/admin/sbin/modules//diskspace-usage-viewer/files.sh
  • /usr/bin/sw-engine -c /usr/local/psa/admin/conf/php.ini -dauto_prepend_file=sdk.php /usr/local/psa/admin/plib/modules/diskspace-usage-viewer/scripts/files.php
This is related to Plesk Extension diskspace-usage-viewer, which has a task to run hourly by default within the crontab. Switching to once a day saved me from a lot of IO usage.
 
Back
Top