Rclone Cache / Rclone VFS / Cache-tmp-upload-path

Hello,

Yes I know there are a lot of treads forming about all types of configuration and I’m adding another one… Sorry about that :). I’ve searched but I’m really just a newbie trying to level up his server skills. I started with plexdrive, moved to cache and now I discovered VFS.

My question is: I have a server with 2 HDD. I use the second one for my cache-tmp-upload-path as a buffer while everything is uploading. Does this still work with rclone VFS or do you recommend another solution?

Current server (plex, radarr, rtorrent, …):
Intel Xeon E3-1246V3
HDD2x HDD SATA 2,0 TB Enterprise
RAM4x RAM 8192 MB DDR3

Tips for my systemd file?

[Unit]
Description=RClone Service
AssertPathIsDirectory=/home/****
After=plexdrive.target network-online.target
Wants=network-online.target

[Service]
Type=simple
ExecStart=/usr/bin/rclone mount gmedia: /mnt/media
–allow-other
–dir-cache-time=160h
–cache-chunk-size=10M
–vfs-read-chunk-size 16M
–vfs-read-chunk-size-limit 2G
–buffer-size=500M
–attr-timeout=1s
–syslog
–umask 002
–rc
–cache-tmp-upload-path /home//Plex/rclone_upload
–cache-tmp-wait-time 60m
–log-level INFO
ExecStop=/usr/bin/sudo /usr/bin/fusermount -uz /mnt/media
Restart=on-abort
User=
***
Group=*****

[Install]
WantedBy=default.target

Thank you guys!