High Usage memory

What is the problem you are having with rclone?

High memory usage

What is your rclone version (output from rclone version)

rclone v1.55.0

Which OS you are using and how many bits (eg Windows 7, 64 bit)

Linux Centos 7.9.2009

Which cloud storage system are you using? (eg Google Drive)

Google Cloud

Hello

I'm having the following problem using Rclone, the memory usage constantly reaches 100% of the server capacity, I send approximately 50,000 files per day to my bucket on Google Cloud, and every 4, 5 days I have to restart the service rclone to normalize memory usage.

Has anyone had a similar problem with server memory usage?

The server configuration is as follows:
Intel(R) Xeon(R) CPU E5-4650 0 @ 2.70GHz
42GB Ram

The linux service file

[Unit]
Description=Montar GCP Bucket em /mnt/gcp-bucket
After=syslog.target local-fs.target network.target

[Service]
Environment=RCLONEHOME=/root/.config/rclone
Environment=MOUNTTO=/mnt/gcp-bucket
Environment=LOGS=/var/log/rclone
Type=simple
User=root
ExecStartPre=/bin/mkdir -p ${MOUNTTO}
ExecStartPre=/bin/mkdir -p ${LOGS}
ExecStart=/usr/bin/rclone mount
--checkers 1
--allow-other
--cache-chunk-path=/mnt/rclone/gcp-bucket/chunk
--cache-dir=/mnt/rclone/gcp-bucket/cache
--dir-cache-time 1m
--cache-info-age=8h
--vfs-cache-mode full
--vfs-cache-max-age 8h
--vfs-cache-max-size 50G
--vfs-read-ahead 1M
--vfs-read-chunk-size 100M
--vfs-read-chunk-size-limit 500M
--buffer-size 1M
--use-mmap
--attr-timeout=12s
--transfers 8
--log-file ${LOGS}/gcp-rclone.log
--log-level INFO
--config ${RCLONEHOME}/rclone.conf
--gid 1000
--uid 1000
--dir-perms 0775
--file-perms 0776
gcp-bucket:--MY_BUCKET-- ${MOUNTTO}
ExecStop=/bin/fusermount -u -z ${MOUNTTO}
ExecStop=/bin/rmdir ${MOUNTTO}
Restart=always
[Install]
WantedBy=multi-user.target

Memory Usage Graph

Thanks!

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.