What is the problem you are having with rclone?
With vfs-cache-mode full it keeps checking the same files over and over again to see if they can be removed. This is causing downloads to be very slow, 40KB/s tops.
These files are currently uploading to Dropbox.
Run the command 'rclone version' and share the full output of the command.
I was running 1.59.0, also tried 1.60.0 beta.
Which cloud storage system are you using? (eg Google Drive)
Dropbox
The command you were trying to run (eg rclone copy /tmp remote:tmp
)
rclone mount crypt:/ --allow-other --vfs-cache-mode full --vfs-cache-max-size 80G --vfs-read-chunk-size 16M --vfs-read-chunk-size-limit 128M --bwlimit 60M --dir-cache-time 9999h --tpslimit 10 --tpslimit-burst 10 --disable-http2 -vv --log-file=rclone.log --cache-dir cache Media
The rclone config contents with secrets removed.
[dropbox]
type = dropbox
client_id = <redacted>
client_secret = <redacted>
impersonate = <redacted>
token = {"access_token":"<redacted>","token_type":"bearer","refresh_token":"<redacted>","expiry":"2022-07-28T14:23:00.338181+02:00"}
[crypt]
type = crypt
remote = dropbox:encrypted
password = <redacted>
password2 = <redacted>
A log from the command with the -vv
flag
2022/07/28 10:57:23 INFO : Starting bandwidth limiter at 60Mi Byte/s
2022/07/28 10:57:23 INFO : Starting transaction limiter: max 10 transactions/s with burst 10
2022/07/28 10:57:23 DEBUG : rclone: Version "v1.60.0-beta.6375.72227a015" starting with parameters ["rclone" "mount" "crypt:/" "--allow-other" "--vfs-cache-mode" "full" "--vfs-cache-max-size" "80G" "--vfs-read-chunk-size" "16M" "--vfs-read-chunk-size-limit" "128M" "--bwlimit" "60M" "--dir-cache-time" "9999h" "--tpslimit" "10" "--tpslimit-burst" "10" "--disable-http2" "-vv" "--log-file=rclone.log" "--cache-dir" "cache" "Media"]
2022/07/28 10:57:23 DEBUG : Creating backend with remote "crypt:/"
2022/07/28 10:57:23 DEBUG : Using config file from "/Users/j/.config/rclone/rclone.conf"
2022/07/28 10:57:23 DEBUG : Creating backend with remote "dropbox:encrypted"
2022/07/28 10:57:24 DEBUG : vfs cache: root is "/Users/j/cache"
2022/07/28 10:57:24 DEBUG : vfs cache: data root is "/Users/j/cache/vfs/crypt"
2022/07/28 10:57:24 DEBUG : vfs cache: metadata root is "/Users/j/cache/vfsMeta/crypt"
2022/07/28 10:57:24 DEBUG : Creating backend with remote "/Users/j/cache/vfs/crypt//"
2022/07/28 10:57:24 DEBUG : Creating backend with remote "/Users/j/cache/vfsMeta/crypt//"
2022/07/28 10:57:27 DEBUG : TV Shows/Catfish - The TV Show/Season 8/Catfish - The TV Show - S08E05 - Joseph & Sabrina - HDTV-1080p.mkv: vfs cache: truncate to size=1843997843
2022/07/28 10:57:27 DEBUG : TV Shows/Catfish - The TV Show/Season 8/Catfish - The TV Show - S08E05 - Joseph & Sabrina - HDTV-1080p.mkv: vfs cache: setting modification time to 2020-02-06 00:53:54 +0100 CET
2022/07/28 10:57:27 INFO : TV Shows/Catfish - The TV Show/Season 8/Catfish - The TV Show - S08E05 - Joseph & Sabrina - HDTV-1080p.mkv: vfs cache: queuing for upload in 5s
2022/07/28 10:57:32 DEBUG : vfs cache RemoveNotInUse (maxAge=3600000000000, emptyOnly=false): item TV Shows/Catfish - The TV Show/Season 8/Catfish - The TV Show - S08E05 - Joseph & Sabrina - HDTV-1080p.mkv not removed, freed 0 bytes
2022/07/28 10:57:32 DEBUG : vfs cache RemoveNotInUse (maxAge=3600000000000, emptyOnly=false): item TV Shows/Catfish - The TV Show/Season 8/Catfish - The TV Show - S08E05 - Joseph & Sabrina - HDTV-1080p.mkv not removed, freed 0 bytes
2022/07/28 10:57:32 DEBUG : vfs cache RemoveNotInUse (maxAge=3600000000000, emptyOnly=false): item TV Shows/Catfish - The TV Show/Season 8/Catfish - The TV Show - S08E05 - Joseph & Sabrina - HDTV-1080p.mkv not removed, freed 0 bytes
2022/07/28 10:57:32 DEBUG : vfs cache RemoveNotInUse (maxAge=3600000000000, emptyOnly=false): item TV Shows/Catfish - The TV Show/Season 8/Catfish - The TV Show - S08E05 - Joseph & Sabrina - HDTV-1080p.mkv not removed, freed 0 bytes
2022/07/28 10:57:32 DEBUG : vfs cache RemoveNotInUse (maxAge=3600000000000, emptyOnly=false): item TV Shows/Catfish - The TV Show/Season 8/Catfish - The TV Show - S08E05 - Joseph & Sabrina - HDTV-1080p.mkv not removed, freed 0 bytes
2022/07/28 10:57:32 DEBUG : vfs cache RemoveNotInUse (maxAge=3600000000000, emptyOnly=false): item TV Shows/Catfish - The TV Show/Season 8/Catfish - The TV Show - S08E05 - Joseph & Sabrina - HDTV-1080p.mkv not removed, freed 0 bytes
2022/07/28 10:57:32 DEBUG : vfs cache RemoveNotInUse (maxAge=3600000000000, emptyOnly=false): item TV Shows/Catfish - The TV Show/Season 8/Catfish - The TV Show - S08E05 - Joseph & Sabrina - HDTV-1080p.mkv not removed, freed 0
It just keeps going like that. It seems like it's not respecting the --vfs-cache-poll-interval
flag, which defaults to 1m.