在 lsyncd.log 中看到“事件队列中的溢出”时的解决方案
从其他知识库中,我学会了调整max_user_watches,但通过调整max_queued_events,我更正了事件队列异常中的 OVERFLOW。
临时解决方案无需重新启动我的 lsyncd 进程即可工作。
我选择了 1000000 作为一个任意大的数字。Ubuntu 18 的默认值为 16384。
临时解决方案
检查您当前的调整值:
$ sysctl fs.inotify.max_queued_events
fs.inotify.max_queued_events = 16384
$ sysctl fs.inotify.max_user_watches
fs.inotify.max_user_watches = 8192
通过 shell 更新 max_user_watches 和 max_queued_events
sudo sysctl fs.inotify.max_user_watches=1000000
sudo sysctl fs.inotify.max_queued_events=1000000
永久解决方案,重启后仍然存在
更新 /etc/sysctl.conf 中的 max_user_watches 和 max_queued_events
fs.inotify.max_user_watches=1000000
fs.inotify.max_queued_events=1000000
lsyncd.conf 基本配置
/etc/lsyncd/lsyncd.conf
settings {
logfile = "/var/log/lsyncd.log",
pidfile = "/var/run/lsyncd/lsyncd.pid",
insist = true
}
sync {
default.rsyncssh,
source="/var/application/data",
host="node2",
excludeFrom="/etc/lsyncd/exclude",
targetdir="/var/application/data",
rsync = {
archive = true,
compress = false,
whole_file = true
},
ssh = {
port = 22
}
}
系统详情
Linux service1staging 5.0.0-36-generic #39~18.04.1-Ubuntu SMP Tue Nov 12 11:09:50 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Ubuntu 18.04.4 LTS
lsyncd --version 版本:2.1.6